The sleep() function suspends (waits) execution of the current thread for a given number of seconds. Python has a module […]
Python sleep()

The sleep() function suspends (waits) execution of the current thread for a given number of seconds. Python has a module […]
In this article, we will explore time module in detail. We will learn to use different time-related functions defined in […]
In this article, you will learn to convert timestamp to datetime object and datetime object to timestamp (with the help […]
In this article, you will learn to get current time of your locale as well as different time zones in […]
In this article, you will learn to get today’s date and current date and time in Python. We will also […]
In this article, you will learn to create a datetime object from a string (with the help of examples). The […]
In this article, you will learn to convert date, time and datetime objects to its equivalent string (with the help […]
In this article, you will learn to manipulate date and time in Python with the help of examples. Python has […]
In this tutorial, you will learn about regular expressions (RegEx), and use Python’s re module to work with RegEx (with […]
In this tutorial, you will learn about Python @property decorator; a pythonic way to use getters and setters in object-oriented […]