1) To compute the GCD of two numbers using python ()
2) To find square root of number ()
3) To find exponential using Programming with Python ()
4) To find the maximum of list of numbers ()
5) To find a value using linear search in python program
6) To find a value using binary search in python program
7) To sort list of elements using selection sort
8) Write a program to find prime number ()
9) To multiply matrices using python
10) To sort list of elements using insertion sort()
11) To sort list of elements using merge sort ()
12) To find word and lines in command line arguments
13) Write a program to create, concatenate and print a string and accessing sub-string
from a given string. ()
14) Write a program to demonstrate different number data types in Python. ()
15) Write a program to perform different Arithmetic Operations on numbers in Python.()
16) Write a program to create, concatenate and print a string and accessing sub-string from a given
string. ()
17) Write a python script to print the current date in the following format. ()
18) Write a program to create, append, and remove lists in python. ()
19) Write a program to demonstrate working with tuples in python. ()
20) Write a program to demonstrate working with dictionaries in python. ()
21) Write a python program to find largest of three numbers. ()
22) Write a Python program to convert temperatures to and from Celsius, Fahrenheit. [Formula: c/5 =
f-32/9]. ()
23) Write a Python program to construct the stars(*) pattern, using a nested for loop. ()
24) Write a Python script that prints prime numbers less than. ()
25) Write a python program to find factorial of a number using Recursion. ()
26) Write a program that accepts the lengths of three sides of a triangle as inputs. The program output
should indicate whether or not the triangle is a right triangle (Recall from the Pythagorean
Theorem that in a right triangle, the square of one side equals the sum of the squares of the other
two sides).
27) Write a python program to define a module to find Fibonacci Numbers and import the module to
another program.
28) Write a python program to define a module and import a specific function in that module to
another program.
29) Write a script named [Link]. This script should prompt the user for the names of two text
files. The contents of the first file should be input and written to the second file.
30) Write a program that inputs a text file. The program should print all of the unique words in the file
in alphabetical order.
31) Write a Python class to convert an integer to a roman numeral.
32) Write a Python class to implement pow (x, n). ()
33) Write a Python class to reverse a string word by word. ()
34) Write Python program to perform following operations on Tuples: a) Create Tuple b)
Access Tuple c) Update Tuple d) Delete Tuple ()
35) Write Python program to perform following operations on Dictionaries: a) Create
Dictionary b) Access Dictionary elements c) Update Dictionary d) Delete Set e)
Looping through Dictionary ()
36) Write a program in Python to handle user defined exception for given problem.
37) Write a program in Python to demonstrate following operations: a) Simple inheritance
b) Multiple inheritance ()
38) Write Python program to demonstrate use of: a) built-in packages (e.g. NumPy,
Pandas) b) user defined packages
39) Write Python program to demonstrate use of: a) Builtin module (e.g. keyword, math,
number, operator) b) user defined module
40) Develop user defined Python function for given problem: a) Function with minimum
2 arguments b) Function returning values. ()
41) a) Write Python program to demonstrate math built- in functions (Any 2 programs) b)
Write Python program to demonstrate string built – in functions (Any 2 programs)
42) Write a program using a while loop that asks the user for a number, and prints a
countdown from that number to zero
43) Write a program using for loop that loops over a sequence. What is sequence?
44) Using for loop, write a program that prints out the decimal equivalents of 1/2, 1/3,
1/4, ..1/10.
45) Write a Program for checking whether the given number is a even number or not. ()