Notification texts go here Contact Us Click here
python program

Simple Interest in python

""" Program to calculate simple interest  """   p = int ( input ( "Enter principal amount:" ) )    #taking …

Area and Perimeter Calculating in python .

"""  Program to calculate area and perimeter of square  """     side =   float ( input ( "Enter a side length of t…

Program to swap two numbers without using third variable

""" program to swap two numbers without using third  """   a  =   int ( input ( "Enter the first number : " )…

Alarm clock in Python

Creating a basic alarm clock  in  Python involves using the ` time ` module to manage the  current  time   and  the `playsound` library to play an a…

Scientific calculator using python

Creating a scientific calculator  in  Python involves building a  user  interface to handle various mathematical operations  and  functions.  You  c…

The Rock, Paper, Scissors game in Python to play it infinitely

Program : The Rock ,  Paper ,  Scissors game  in  Python to play it infinitely: def  get_user_choice ( ) :     user_choice  =   input ( "Enter…

Python program that checks if two given strings are Anagrams of each other .

Program  : Python program that checks  if  two given strings are Anagrams of each oth                     er    def  are_anagrams ( str1 ,  str2 ) …

Quiz Game with Options using Python

class Quiz: def __init__ ( self , questions ) : self . questions = questions self . score = 0   def ask_question ( s…

Quiz Game using python

* Program of Quiz Gme :   class  Quiz:      def   __init__ ( self ,  questions ) :          self . questions   =  questions          self . score …

A Simple Password Generator in Python that creates a random strong password:

Here 's A Simple Password Generator in Python that Creates a Random strong Password:   import random import string   def generate_password(length…

Tic-Tac-Toe game in Python

Tic-Tac-Toe game in Python:   def print_board ( board ) : for row in board: print ( " | " . join ( row ) ) print (…
Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.