Python Manualex1, Ex2
Python Manualex1, Ex2
Simple programs
Programming Exercises:
1. a. Develop a program to read the student details like Name, USN, and Marks in three
subjects. Display the student details, total marks and percentage with suitable messages.
b. Develop a program to read the name and year of birth of a person. Display whether the
person is a senior citizen or not.
2. a. Develop a program to generate Fibonacci sequence of length (N). Read N from the
console.
3. Read N numbers from the console and create a list. Develop a program to print mean,
variance and standard deviation with suitable messages.
4. Read a multi-digit number (as chars) from the console. Develop a program to print the
frequency of each digit with suitable message.
5. Develop a program to print 10 most frequently appearing words in a text file. [Hint: Use
dictionary with distinct words and their frequency of occurrences. Sort the dictionary in the
reverse order of frequency and display dictionary slice of first 10 items]
7. Develop a program to backing Up a given Folder (Folder in a current working directory) into
a ZIP File by using relevant modules and suitable methods.
8. Write a function named DivExp which takes TWO parameters a, b and returns a value c
(c=a/b). Write suitable assertion for a>0 in function DivExp and raise an exception for when
b=0. Develop a suitable program which reads two values from the console and calls a function
DivExp.
9. Define a function which takes TWO objects representing complex numbers and returns new
complex number with a addition of two complex numbers. Define a suitable class ‘Complex’
to represent the complex number. Develop a program to read N (N >=2) complex numbers
and to compute the addition of N complex numbers.
10. Develop a program that uses class Student which prompts the user to enter marks in three
subjects and calculates total marks, percentage and displays the score card details. [Hint: Use
list to store the marks in three subjects and total marks. Use __init__() method to initialize
name, USN and the lists to store marks and total, Use getMarks() method to read marks into
the list, and display() method to display the score card details.]
Output
Output
x=5
y = 10
x, y = y, x
print('x =', x)
print('y =', y)
Output
x = 10
y=5
x=5
y = 10
t=x
x=y
y=t
print('x =', x)
print('y =', y)
Output
x = 10
y=5
Output
# Python program to find the largest number among the three input numbers
num1 = float(input('Enter first number: '))
num2 = float(input('Enter second number: '))
num3 = float(input('Enter third number: '))
if num1 >= num2 and num1 >= num3:
largest = num1
elif num2 >= num3:
largest = num2
else:
largest = num3
print("The largest number is", largest)
Output
Pattern-1
*
for i in range(1,6):
**
for j in range(1,i+1):
***
print("*",end=' ')
****
print()
*****
Output
Pattern-2
rows=5
12345
for i in range(rows + 1, 0, -1):
1234
for j in range(0, i - 1):
123
print(j+1, end=' ')
12 print(" ")
1
Output
1. a. Develop a program to read the student details like Name, USN, and Marks in three
subjects. Display the student details, total marks and percentage with suitable messages.
# 1.a. Develop a program to read the student details like Name, USN, and Marks in
# three subjects. Display the student details, total marks and percentage with
# suitable messages.
total=m1+m2+m3
per=total/3
print('USN ',usn)
print('Name ',name)
print('Total',total)
print('Percentage',round(per,2))Output
1.b. Develop a program to read the name and year of birth of a person. Display whether
the person is a senior citizen or not.
# 1.b. Develop a program to read the name and year of birth of a person.
# Display whether the person is a senior citizen or not.
name=input("Enter Name ")
current_year=int(input("Enter current year "))
yob=int(input("Enter year of birth "))
age=current_year-yob
if age>60:
status=name+ ' is a senior citizen'
else:
status=name+' is not a senior citizen'
print(status)
Output
2. a. Develop a program to generate Fibonacci sequence of length (N). Read N from the
console.
num1, num2 = 0, 1
if n <= 0:
elif n == 1:
print(num1)
else:
print('Fibonacci sequence:')
print(num1,end=' ')
print(num2,end=' ')
i=2
while i < n:
CSE, CITECH 2023-24 Page 8
Introduction to Python Programming (23PLB105/205) Lab Manual
print(num3,end=' ')
num1 = num2
num2 = num3
i += 1
Output
def fact(n):
if n == 0:
return 1
res = 1
res = res * i
return res
n = int(input('Enter n '))
r = int(input('Enter r '))
res=int(nCr(n,r))
Output