Posts from Python

Toggle character’s case in a string using Python

By Siddharth Shankar Debata

In this tutorial, we will learn to toggle the character’s case in a string in Python. Here, we will toggle the character’s case which means if the character is in lower.... Read More

Creating a Word Counter in Python

By Saumitra Deshpande

In this post, we are going to see how we can make a word counter using Python. For this, we will be using the split function to make our job easier by reducing the length of code a.... Read More

How to use Bitwise OR function in Pandas Dataframe in Python

By Shatakshi Bhatnagar

In this tutorial, we will learn how to use bitwise OR function and pop function in Pandas Dataframe in Python. Bitwise OR function can be used where part of data can be selected wh.... Read More

UDP Client and Server Tutorial in Python

By Nagi Reddy

This Tutorial will learn to program the UDP Client and Server in Python. This protocol is using in many applications such as games for connectionless communication without losing a.... Read More

Shutdown and Restart PC using Python

By Nataraj Maddala

In this tutorial, we are going to learn how to Shutdown and restart the PC using Python. For this firstly, we need to import the OS module in our code. OS is an inbuilt module pres.... Read More

Detect and Translate in Python

By Nataraj Maddala

In this tutorial, we are going to learn how to translate text in Python. Firstly, make sure that your computer is connected to the internet. And also, you need to install a module .... Read More

Reverse a Queue in Python

By Prashanth Gowda R S

In this tutorial, we will learn the different techniques used to reverse a Queue in Python. The queue is a data structure the supports first-in-first-out ( FIFO ) semantics for ins.... Read More

Pyfiglet in Python

By Rohan Jaiswal

In this tutorial, we are going to learn about the function which is not familiar to most of the Python language users. This tool is specially made for the creative coding experienc.... Read More

Related Posts