Gaurav kumaraaroogaurav.hashnode.dev·Nov 30, 2023Simple calculator#write a program to make a simple calculator. import math print("\t____calculator____") def sum(a,b): a+=b return a def sub(a,b): if a>b: a-=b return a else: b-=a return b def mul(a,b): a*=b ...DiscussPython
Phinehas Machariaphinem78.hashnode.dev·Nov 27, 2023Introduction of key concepts about Python programmingAutomation Opportunities: If you frequently work on computers, you'll encounter tasks you'd like to automate. Examples include search-and-replace in text files, complex file renaming, creating databases, building GUI applications, or developing sim...DiscussPython
Vyankateshwar Taikarvtaikar.hashnode.dev·Nov 24, 2023Python Libraries for DevOps📌Introduction to Python Libraries & its importance A library is a collection of code that makes everyday tasks more efficient. Python libraries offer pre-written code for reuse, saving time and effort. They enhance productivity by providing high-lev...Discuss·1 like·47 reads#pythonlibrariesfordevops
Leo Anthonyonlinetraininginusa.hashnode.dev·Nov 15, 20238 Python Libraries You Might Not Be Using But ShouldPython is an extensive collection of libraries and packages. It is popular for making it a powerful and flexible programming language suitable for multiple applications. While many developers rely on widely used libraries, Python also contains numero...DiscussPython
Kishor Chavankishorc.hashnode.dev·Nov 10, 2023Python Libraries for DevOps (Part-3)Let's dive into Python libraries. Reading JSON and YAML in Python JSON and YAML formats are commonly used in configuration management, infrastructure as code, and other DevOps tasks. In Python, libraries (often referred to as modules or packages) are...DiscussPython
Abdulrahmanabuumair.hashnode.dev·Nov 9, 2023Getting started with yagmail: Sending your first email.Your ultimate guide to scripting mails in fewer lines of code. Introduction Have you been stuck with writing email scripts in Python? Trying to write those scripts but they are not working? Stay Tuned and read this script to the end and you will be c...Discuss·41 readspython projects
RAKESH REVASHETTIrakesh-revashetti-09.hashnode.dev·Nov 8, 2023Python Libraries for DevOpsPython libraries are pre-written code collections that extend the functionality of the Python programming language. They provide modules, tools, and functions for specific tasks, making it easier for developers to build complex applications without s...Discusspython libraries
Gaurav Guptaggupta2005.hashnode.dev·Nov 8, 2023Decoding dependencies of your python packagePython dependencies are one of the most difficult problems that one encounters while working in any Python-based system. If the underlying Python package dependencies are not correctly resolved, then you could run into many run-time issues when execu...DiscussPython
pamelajonathanmickie.hashnode.dev·Nov 7, 2023Python: A Versatile and Powerful Programming LanguageIntroduction Python is a dynamic and versatile programming language that has gained immense popularity over the years. Known for its simplicity, readability, and broad range of applications, Python has become a favorite among developers, data scienti...DiscussPython
RAKESH REVASHETTIrakesh-revashetti-09.hashnode.dev·Nov 7, 2023Day 8: Basics of Python Programming language.What is Python? Python is an Open source, general-purpose, high-level, and object-oriented programming language. It was created by Guido van Rossum Python consists of vast libraries and various frameworks like Django, Tensorflow, Flask, Pandas, Ke...DiscussPython 3