Python Lab Manual
Python Lab Manual
LAB MANUAL
REGD NO:
Certificate
Certified that this is a bonafide Record of practical work done by
Mr./Kumari ________________________________
Of Class in Laboratories
Of College during the year
Date:
Week-1
1)Write a program to compute distance between two points taking input from the
Program:-
distance = ((x2-x1)**2+(y2-y1)**2)**0.5
print("Distance = ")
print(distance)
output:-
Week-2
age = 21
output:-
Indentation correction:-
Program:-
age = 21
output:-
b. Write a Program for checking whether the given number is an even number or not
program:-
if (num%2==0):
print(num,"is even")
else:
output:-
c. Write a program using a while loop that asks the user for a number, and prints a countdown from
that number to zero
program:-
while n>=0:
n = n-1
output:-
d. Using a for loop, write a program that prints out the decimal equivalents of
Program:-
i=1;
for j in range(2,11):
print("i:",i,"j:",j)
print(i,"/",j)
print (i/j);
output:-
Week-3(Program Organization, Control Flow)
a. Write a function that takes in a string and a number and prints the string that number of times.
Program:-
if c < n:
print(string * n)
f(string, n, c=c + 1)
f('abc', 3)
Output:-
b. Write a script that prints prime numbers from 100 to 500.
Program:-
count = 0
if(Number % i == 0):
count = count + 1
break
output:-
c. Write a program that takes 2 numbers as command line arguments and prints its sum.
Program
import sys;
n1=int(sys.argv[1]);
n2=int(sys.argv[2]);
print (n1+n2)
output:-
Week-4(Functions)
a. Write a function ball_collide that takes two balls as parameters and computes if they are colliding. Your function should
return a Boolean representing whether or not the balls are colliding.Hint: Represent a ball on a plane as a tuple of (x, y, r), r
being the radius If (distance between two balls centers) <= (sum of their radii) then (they are colliding)
Program:-
import math
def ball_collide(x1,y1,r1,x2,y2,r2):
dist=math.sqrt((x2-x1)**2+(y2-y1)**2);
center=dist/2;
print("Collision point",center);
r=r1+r2;
print("Sum of radious",r)
if(center<=r):
return True;
else:
print("Not Colliding")
return False;
c=ball_collide(4,4,3,2,2,3)
print(c)
c=ball_collide(100,200,20,200,100,10)
print(c)
output:-
b. Find mean, median, mode for the given set of numbers in a list.
Program:-
numbers=[10,15,16,18,20,25,56,58]
def mean3(numbers):
mean = sum(numbers)/len(numbers)
print("mean=",mean)
def median3(numbers):
print("median=",median)
def mode3(numbers):
print("mode=",mode)
mean3(numbers)
median3(numbers)
mode3(numbers)
output:-
Week-5( Functions) - Continued
a) Write a function nearly_equal to test whether two strings are nearly equal. Two
strings a and b are nearly equal when a can be generated by a single mutation on b.
def Nearly_Equal(a,b):
return SequenceMatcher(None,a,b).ratio();
a="khit"
b="khit"
c=Nearly_Equal(a,b)
if(c*100>80):
else:
output:-
b) Write a function dups to find all duplicates in the list.
Program:-
def FindDuplicates(list):
for i in list:
count = list.count(i)
if count > 1:
return True
return False
b = [2,2,3,6,78,65,4,4,5]
print(a)
FindDuplicates(a)
print(b)
FindDuplicates(b)
Output:-
c) Write a function unique to find all the unique elements of a list.
Program:-
def FindUnique(list):
unique = set(list)
for i in unique:
count = list.count(i)
if count > 1:
return True
return False
b = [2,2,3,6,78,65,4,4,5]
print(a)
FindUnique(a)
print(b)
FindUnique(b)
Output ;-
Week--6(Advanced Functions)
program:-
x = lambda a : a * a
print(x(5))
output :-
b. Take two parameters; return the square root of the sums of their squares.
Program:-
x = lambda a,b : a * a + b * b
print(x(5,6))
output:-
program :-
inp_lst = [1,2,3,4,5,6,7,8,9,10]
lst_len= len(inp_lst)
print(lst_avg)
output :-
d. Take a string parameter; return a string which contains the unique letters in the input string (in
any order).
Program: -
# Initializing list
# printing result
output:-
Week-9(DS)
a) Write a Python script that performs all basic set operations on two given sets.
Program:-
E = {0, 2, 4, 6, 8};
N = {1, 2, 3, 4, 5};
# set union
# set intersection
# set difference
output:-
c) Find the most frequent words in a text read from a file.
PROGRAM:
count = 0;
word = "";
maxCount = 0;
words = [];
for s in string:
words.append(s);
count = 1;
if(words[i] == words[j]):
count = count + 1;
maxCount = count;
word = words[i];
file.close();
OUTPUT:
Week-12 (Files)
PROGRAM:
input_file=open('sample1.txt','r')
l=len(line)
s=' '
while(l>=1):
s=s+line[l-1]
l=l-1
print(s)
input_file.close()
OUTPUT:-
b) Write a program to compute the number of characters, words and lines in a file.
PROGRAM:-
k=open('sample1.txt','r')
char,wc,lc=0,0,0
for line in k:
for k in range(0,len(line)):
char +=1
if(line[k]==' '):
wc+=1
if(line[k]=='\n'):
wc,lc=wc+1,lc+1
print("The no.of chars is %d\n The no.of words is %d\n The no.of lines is %d"%(char,wc,lc))
OUTPUT:-