Jan 08, 2022
How to install Python packages with requirements.txt
we will discuss how to install python packages with requirements.txt file, as it is difficult to install packages individually.
Jan 13, 2022
How to use randint() Function in Python
In this tutorial, we will discuss how to use randint() function in Python. randint() is an inbuilt function of the random module. By importing random module we can use all of it functions.
Jan 15, 2022
How to install pywhatkit in Python
In this tutorial, we will discuss how to install pywhatkit in Python. Pywhatkit is easy to use and officially supports Python 3.8+
Jan 15, 2022
How to use playsound module in Python
By using playsound module we can play sound. This is a cross platform module that can play audio files.
Jan 21, 2022
How to send whatsApp message using pywhatkit in Python
we will see how to send whatsApp message through website web.whatsapp.com using pywhatkit in Python that can automatically send messages to any WhatsApp number.
Jan 26, 2022
How to use Random shuffle() Method in Python
shuffle method is used for changing the position of elements in the list. shuffle() is an inbuilt function of the random module.
Jan 26, 2022
How to get current time in seconds in Python
This tutorial focuses on how to get the current time in seconds in Python. We use time library for achieving this.
Feb 09, 2022
How to generate random sentences in Python
In this tutorial, we will focus on how to generate random sentences in Python. We use random library to achieve this.
Feb 09, 2022
How to program Random dice roll in Python
This tutorial discusses about one of the famous program - Roll the Dice.
March 02, 2022
How to check if the string ends with the specified value in Python
In this tutorial, we will discuss how to check if the string ends with the specified value by using endswith() Method