Python program to convert centimeter to inches. This python program will take the distance in centimeter from the user and print it in inches.
ReadPython program to write a bank account class with withdraw/deposit features like check current balance, withdraw money and deposit money. It will work with user input values.
ReadPython program to find the power of a number recursively. Recursive function calls itself repeatedly to get the power of a given number.
ReadHow to remove the last character of a string in python. We will learn two different ways to do that. By using rstrip and by using negative index slicing.
ReadPython tkinter example to create a color choosing dialog. We can use tkinter.colorchooser module to create a color chooser dialog.
ReadPython program to check if two sets are equal or not in 3 different ways. We will learn how to use the equal to operator, not equal to operator, symmetric_difference() method and also the difference() method.
ReadPython program to write a stopwatch. This stopwatch will record the time and once stopped, it prints the time spent.
ReadPython program to insert items to the start of an ordered dictionary. Ordered dictionary remembers the key-value pairs inserted.
ReadPython program to search for specific text in a text file. It will read the text from the user and search for that text in a given file.
ReadLearn how to find the volume of a tetrahedron in Python using user inputs. Tetrahedron is a triangular pyramid and this program will show you how to find the volume in python.
Read