Posts by Nagi Reddy

Author Biographical Info: Not available

Compress JPEG image in Python using PIL

By Nagi Reddy

In this tutorial, we are going to discuss on how to compress the JPEG image in  Python. Compressing JPEG image in Python: We know that compression is important to decrease  the m.... Read More

Simple Mad Libs generator game in Python

By Nagi Reddy

This is a type of game with some random names, prepositions, verbs, and adjectives in Python. Mad Libs In Python: Here is the code for mad libs in Python: import random print("Mad .... 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

Determine the size of an object in Python

By Nagi Reddy

This tutorial will give us a piece of extraordinary information about finding the memory size of an object in Python. How to determine the size of an object in Python: The memory s.... Read More

Python string rpartition()

By Nagi Reddy

This tutorial will give us some knowledge about the use of the rpatition() function in Python programming language. string rpartition() in Python The rpartition() function is using.... Read More

Python Global Interpreter Lock

By Nagi Reddy

This tutorial will give us a piece of information about the Python Global Interpreter Lock (GIL). What is Global Interpreter lock (GIL) in Python Python global interpreter lock(GIL.... Read More

Positional only arguments in Python

By Nagi Reddy

This tutorial will give us a piece of extreme information about positional only arguments in Python. Positional-only arguments in Python: Definition: The arguments are specifying b.... Read More

Difference between ‘is’ and ‘==’ operators in Python

By Nagi Reddy

The ‘is’ and ‘==’ operators are using to compare the variables and we can know more about these two operators in this tutorial. ‘is’ and ‘.... Read More

Related Posts