Python API References
Documentation and references to many of Python’s built-in functions and methods.
How to run Python scripts
The Scope In this article, we will learn more about how to run Python scripts. You should be familiar with Python syntax. If you don’t know many about Python check our guide here. You need to have Python installed in your machine. To know how to install python on your system check our installation guide. […]
Read MoreHow to create dictionary in python
Content Today we will get more into how to create a dictionary in Python. It requires that you already have basic knowledge of Python syntax. Go check our introduction to python usage to know more about Python. You need to have Python installed in your machine. To know how to install python on your system […]
Read Morewhat is the string in python
The string is a Python data type. In this article, we will know what is the string in python, How to reverse, concatenate, and compare the string in Python. To get the most out of this article, you need to have the basic knowledge of Python. If you don’t check our intro to python here. […]
Read MoreHow to install python on windows installation guide
Prerequisites In this article, we will talk more about how to install python on windows. If you’re new to python. You can check our beginner guide to python to know more about its usage. In this article, we will talk about: Downloading Python How to install it Install Python in windows OS How to uninstall […]
Read MoreWhat is python used for: Beginner’s Guide to python
Prerequisites If you’re looking forward to learning python, chances are that you will find this post quite useful. Here you will learn about Python. What it is used for? where to learn it? To know more about any language, you need to know a little bit about its history. by knowing its history you will […]
Read MorePython’s string.replace() Method – Replacing Python Strings
Replacing Python Strings Often you’ll have a string (str object), where you will want to modify the contents by replacing one piece of text with another. In Python, everything is an object – including strings. This includes the str object. Luckily, Python’s string module comes with a replace() method. The replace() method is part of […]
Read MorePython’s range() Function Explained
What is Python’s range() Function? As an experienced Python developer, or even a beginner, you’ve likely heard of the Python range() function. But what does it do? In a nutshell, it generates a list of numbers, which is generally used to iterate over with for loops. There’s many use cases. Often you will want to […]
Read MorePython’s time.sleep() – Pause, Stop, Wait or Sleep your Python Code
Python’s time module has a handy function called sleep(). Essentially, as the name implies, it pauses your Python program. time.sleep() is the equivalent to the Bash shell’s sleep command. Almost all programming languages have this feature, and is used in many use-cases. Python’s time.sleep() Syntax This is the syntax of the time.sleep() function:
1 |
time.sleep(secs) |
time.sleep() […]
Read More