Python Lab Programs - Chapter 2 To 4
Python Lab Programs - Chapter 2 To 4
CHAPTER-2
BASIC I/O OPERATIONS
1. Develop a program of calculator by taking values from user to perform arithmetic
operations and display the results using format( ) function.
Program:
n1 = float(input('Enter first number: ') )
n2 = float(input('Enter second number: ') )
sum = n1 + n2
sub = n1 - n2
mul = n1 * n2
div = n1 / n2
mod = n1 % n2
fd = n1 // n2
exp = n1 ** n2
Output:
Step 2 : Compare two variables using Relational/comparison operators and display results
Output : x > y is False
Output : x < y is True
Output : x == y is False
Output : x != y is True
Output : x >= y is False
Output : x <= y is True
Program:
x = 10
y = 12
Output:
Program:
a = 20
b = 10
c = 15
d=5
e = (a + b) * c / d
print(“Value of (a + b) * c / d is ", e)
e = a + (b * c) / d
print("Value of a + (b * c) / d is ", e)
e = 2 ** 3 ** 2
print(“Value of 2 ** 3 ** 2 is “, e)
e = 5 * 2 // 3
print(“Value of 5 * 2 // 3 is “, e)
Output:
Output:
5. When you are given the radius of a Sphere, formulate a Python program to evaluate
different Sphere Formulas using different arithmetic operators.
Program:
r=float(input(“enter the radius of a Sphere”))
pi=3.142
d=2*r
a=4*pi*r*r
v=(4/3)*pi*(r ** 3)
print(“Diameter of a Sphere = “, d)
print(“Surface Area of a Sphere = “, a)
print(“Volume of a Sphere = “, v)
Output:
CHAPTER-3
CONTROL FLOW: LOOPS
6. When 2 numbers are given, compose a Python code to detect the largest of them.
Program:
n1 = float(input('Enter first number: ') )
n2 = float(input('Enter second number: ') )
Output 1:
Output 2:
Algorithm : Python code to evaluate and display result based on given marks.
Step 1 : Take marks as input from the user
Step 2 : Compare the marks(m) with given conditions and display results
if m > 85 and m <= 100 , then
Print “You scored Grade A.”
elif m > 75 and m <= 85 , then
Print “You scored Grade B+.”
elif m > 60 and m <= 75 , then
Print “You scored Grade B.”
elif m > 40 and m <= 60 , then
Print “You scored Grade C.”
else
Print “Sorry, you are fail”
Program:
m = int(input('Enter the marks: ') )
Output 1: Output 4:
Output 2: Output 5:
Output 3: Output 6:
8. Build a Python program to check whether the entered year is a Leap year or not.
Algorithm: Python program to check whether the entered year is a Leap year or not.
Step 1 : Take year as input from the user
Program:
year = int(input("Enter a year: ")) Output 1:
if (year % 4) == 0:
if (year % 100) == 0:
if (year % 400) == 0:
print(year, " is a leap year") Output 2:
else:
print(year, " is not a leap year")
else:
print(year, " is a leap year") Output 3:
else:
print(year, " is not a leap year")
Program:
number = int(input("Enter an integer: "))
if((number%5==0)and(number%7==0)):
print(number, "is a multiple of both 5 and 7")
else:
print(number, "is not a multiple of both 5 and 7")
Output 1:
Output 2:
CHAPTER-4
CONTROL FLOW: LOOPS
10. Develop a Python program to display the given integer in reverse
manner and to find the sum of the digits of an integer.
Algorithm: Python program to display the given integer in reverse manner and to
find the sum of the digits of an integer.
Step 1: Receive the integer number from the user.
Step 2: Declare rev = 0, sum=0
while(number!=0):
rem = number%10
rev = (rev*10)+rem
number = number//10
sum = sum+rem
Step 3: print “Reverse of an given number: “
print "Sum of digits: "
Program:
n = int(input("Enter an integer: "))
rev=0
sum=0
while(n!=0):
rem = n%10
rev = (rev*10)+rem
sum=sum+rem
n = n//10
Output:
Algorithm: Python program to find out the sum of numbers, find out product of numbers,
find out average of numbers
Program:
count = int(input("Enter the count of numbers: "))
i=0
sum = 0, pro=1
for i in range(count):
n = int(input("Enter an integer: "))
sum=sum+n
pro=pro*1
avg = sum/count
Output:
12. Construct and compile a python program to generate the prime numbers
from 1 to N.
Program:
num =int(input("Enter the range: "))
for n in range(1,num):
for i in range(2,n):
if(n%i == 0):
break
else:
print(n)
Output:
13. Develop a Python program that accepts a word from the user and reverse it.
Program:
str = input("Input a word to reverse: ")
Output: