Program of Average of two Numbers in Python #6

Program of Average of two Numbers in Python Program of Average of two Numbers in Python Average means arithmetic mean which can be calculated by the following formula Average = Sum of all numbers/ Total numbers for example: if we have to calculate the average of 3 and 7, so average of these numbers can … Read more

Addition Subtraction Division Multiplication #5

Python Program Addition Subtraction Division Multiplication Python Program to perform Addition Subtraction Division Multiplication In this article, we are going to understand the basic mathematical operations like Addition Subtraction Multiplication Division. So in other words we can say that we are going to discuss the following programs. In all the above programs we will take … Read more

Python Program to Add Two Numbers #4

Python Program to Add Two Numbers In this program, students will understand the code of Python which will accept two numbers from the user and add them. To understand the Python Program to Add Two Numbers, students should have basic knowledge of input( ) function and print( ) function. Once the students understand the concept … Read more

Print Hello World in Python Practice Program #3

Print Hello World in Python This Program “Print Hello World in Python” is a very basic program. It is basically used to demonstrate the print() function of Python. This program shows that how can we print a string in Python. What is print() function in Python? print() function is an inbuilt function in python. This … Read more

Even Odd Program in Python using Function #2

Even Odd Program in Python using Function Even Numbers : Those numbers which are completely divisible by 2 are called even numbers. for example : 2, 4, 6, 8 are even numbers. When we divide 242 by 2, it returns remainder ZERO which shows that 242 is an even number. Odd Numbers : Those numbers … Read more

error: Content is protected !!