Python Lab
Python Lab
# Python program to
# demonstrate numeric value
a = 5
print("Type of a: ", type(a))
b = 5.0
print("\nType of b: ", type(b))
c = 2 + 4j
print("\nType of c: ", type(c))
Output:
Type of a: <class 'int'>
Program2:- a program to compute distance between two points taking input from the user Write a
program add.py that takes 2 numbers as command line arguments and prints its sum.
Solution:-
Distance can be calculated using the two points (x1, y1) and (x2, y2), the
distance d between these points is given by the formula:
for e.g : let x1 , y1=10,9 and x2 , y2=4,1 then (x2-x1)2=(10-4)2 = 62 = 36 and (y2-y1)2= (9-
2 2
1) = 8 = 64 now 64 + 36 =100 and 100 is square root of 10 sp distance between
(10,9) and (4,1) is 10
Code:-
x1=int(input("enter x1 : "))
x2=int(input("enter x2 : "))
y1=int(input("enter y1 : "))
y2=int(input("enter y2 : "))
Program-3 Write a Program for checking whether the given number is an even number or
not. Using a for loop.
Solution:
if (num % 2) == 0:
print("{0} is Even".format(num))
else:
print("{0} is Odd".format(num))
Program 4:-Write a Program to demonstrate list and tuple in python. Write a program using a for loop
that loops over a sequence. Write a program using a while loop that asks the user for a number, and
prints a countdown from that number to zero.
Solution:-
# creating a list
list1 = [1, 2, 5, 6]
Write a program using a while loop that asks the user for a number, and prints a countdown from that
number to zero.
n=int(input("Enter n value:"))
for i in range(n,-1,-1):
print(i)
Program 5:-Find the sum of all the primes below two million. By considering the terms in the Fibonacci
sequence whose values do not exceed four million, WAP to find the sum of the even-valued terms.
number = numbers[pos]
pos += 1
num = number
num += number
if num in numbers[:]:
print sum_of_primes + 2
Program 6:-Write a program to count the numbers of characters in the string and store them in a
dictionary data structure Write a program to use split and join methods in the string and trace a
birthday of a person with a dictionary data structure
Code:-
str=input("enter string : ")
f = {}
for i in str:
if i in f:
f[i] += 1
else:
f[i] = 1
print(f)
Write a program to use split and join methods in the string and trace a birthday of a person with a
dictionary data structure
split
Str.split()
join
Str1.join(str2)
Algorithm
Step 1: Input a string.
Step 2: here we use split method for splitting and for joining use
join function.
Step 3: display output.
Example code
#split of string
str1=input("Enter first String with space :: ")
Output
Enter first String with space :: python program
['python', 'program']
Enter second String with (,) :: python, program
['python', 'program']
Enter third String with (:) :: python: program
['python', 'program']
Enter fourth String with (;) :: python; program
['python', 'program']
Enter fifth String without space :: python program
['py', 'th', 'on', 'pr', 'og', 'ra', 'm']
Example Code
#string joining
str1=input("Enter first String
:: ")
Output
Enter first String ::
AAA Enter second String
:: BBB
AFTER JOINING OF TWO STRING ::>ABBBABBBA
Program7:-
Write a program to count frequency of characters in a given file. Can you use character frequency to
tell whether the given file is a Python program file, C program file or a text file? Write a program to
count frequency of characters in a given file. Can you use character frequency to tell whether the
given file is a Python program file, C program file or a text file?
Program Explanation
1. User must enter a file name and the letter to be searched.
2. The file is opened using the open() function in the read mode.
3. A for loop is used to read through each line in the file.
4. Each line is split into a list of words using split().
5. A for loop is used to traverse through the words list and another for loop is used to
traverse through the letters in the word.
6. If the letter provided by the user and the letter encountered over iteration are equal, the letter
count is incremented.
7. The final count of occurrences of the letter is printed.
Program 8 :-Write a program to print each line of a file in reverse order. Write a program to compute
the number of characters, words and lines in a file.
Given a text file. The task is to reverse as well as stores the content from an input file to an
output file.
This reversing can be performed in two types.
Full reversing: In this type of reversing all the content get reversed.
Word to word reversing: In this kind of reversing the last word comes first and the
first word goes to the last position.
ext file:
filter_none
brightness_4
# Open the file in write mode
f1 = open("output1.txt", "w")
f1.close()
Output:
Write a program to compute the number of characters, words and lines in a file.
import sys
fname = sys.argv[1]
lines = 0
words = 0
letters = 0
pos = 'out'
for letter in line:
if letter != ' ' and pos == 'out':
words += 1
pos = 'in'
elif letter == ' ':
pos = 'out'
print("Lines:", lines)
print("Words:", words)
print("Letters:", letters)
# Function to return
# LCM of two numbers
def findLCM(a, b):
lar = max(a, b)
small = min(a, b)
i = lar
while(1) :
if (i % small == 0):
return i
i += lar
# Driver Code
a = 5
b = 7
print("LCM of " , a , " and ",
b , " is " ,
findLCM(a, b), sep = "")
LCM of 15 and 20 is 60
# Everything divides 0
if (a == 0):
return b
if (b == 0):
return a
# base case
if (a == b):
return a
# a is greater
if (a > b):
return gcd(a-b, b)
return gcd(a, b-a)
Output:
GCD of 98 and 56 is 14
Program 10 :-Write a program to implement Merge sort. Write a program to implement Selection
sort, Insertion sort
mergeSort(arr,0,n-1)
print ("\n\nSorted array is")
for i in range(n):
print ("%d" %arr[i]),
Output:
Given array is
12 11 13 5 6 7
Sorted array is
5 6 7 11 12 13
# Python program for implementation of Selection
# Sort
import sys
A = [64, 25, 12, 22, 11]
key = arr[i]