Write a Python Program to find Largest of Two Numbers
In This Program, Write a Python Program to find Largest of Two Numbers With source code and example. Python Program to find Largest of Two Numbers In This program There are many approaches to find the largest of two number, in this python program we discuss a few of them. Then the python program user … Read more
How to Get Current Date and Time in Python
In This Tutorials How to Get Current date and Time in Python with an example. so we see Below as Example. Python Program to Get Current Date and Time Here See the python source code as example which calculate the current date and time. from datetime import date today = date.today() print(“Current Date = “, … Read more
Python Program to Calculate Electricity Bill with Source Code
In This Tutorials how to calculate to Calculate Electricity Bill with an example. Python Program to find Electricity Bill with source code In this example how to find Electricity Bill in python with usage to meter reading. Python Program to Calculate Electricity Bill units = int(input(” Please enter Number of Units you Consumed : “)) … Read more
Write a Python Program to Check Leap Year
In this tutorial we can learn how to check whether a year is a leap or not using a python program. We can explain A leap year has 365 days (the extra day is the 29th of February). It comes mostly every four years. Here we can check whether a year is a leap or … Read more
Python Program to find cube of a number
In this tutorial, We learn to Python Program to find cube of a number with example. Python program to find cube of a number Written below to find cube of a number in python. # Owner : Pythonsourcecode.com Author : Pushpam abhishek number = int(input(“Enter the number: “)) cube = number ** 3 print(“The cubed … Read more
Calendar Program in Python With Example
In this tutorial, We learn to Write a Python Program to Print the calendar of a given month and year with example. Python Calendar Program Example In this program we show the program to display the Calendar. import calendar year = int(input(“Please Enter the year Number: “)) month = int(input(“Please Enter the month Number: “)) … Read more
Write a python program to perform arithmetic operations With Example
This Python program allows the user to input two numeric values of data type float (a number with a decimal point). The program then performs arithmetic operations on those numbers by allowing the user to choose from various commands, including “add” (to add one number to another), and “mod” (to find the modulus of one … Read more
Write a python program to multiply two numbers
In this tutorial, we are shown the Write a Python program to multiply two numbers Numbers. Here is The Example to multiply the two numbers.and more easy to run this code for any IDE. num1 = int(input(“Please Enter the First Number to Multiply = “)) num2 = int(input(“Please Enter the second Number to Multiply … Read more
Write a Program to Subtract Two Numbers
In this tutorial, we are shown the program to subtract Two Number How to Write a Program to Subtract Two Numbers Here is The Example to subtract the two numbers. num1 = 258 num2 = 125 sub = num1 – num2 print(‘The Result of subtracting {0} from {1} = {2}’.format(num2,num1,sub)) This program example accepts two … Read more