Python Programming
1.Write a program to demonstrate different number data types in Python.
2. Write a program to perform different Arithmetic Operations on
numbers in Python.
3. Write a program to create, concatenate and print a string and
accessing sub-string from a given string.
4. Write a python script to print the current date in the following format
“Sun May 29 02:26:23 IST 2017”
5. Write a program to create, append, and remove lists in python.
6. Write a program to demonstrate working with tuples in python.
7. Write a program to demonstrate working with dictionaries in python.
8. Write a python program to find largest of three numbers.
9. Write a Python program to convert temperatures to and from Celsius,
Fahrenheit. [ Formula: c = (f-32)(5/9)]
10. Write a Python program to construct the following pattern, using a
nested for loop
11. Write a Python script that prints prime numbers less than 20.
12. Write a python program to find factorial of a number using Recursion.
13. 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).
14. Write a python program to define a module to find Fibonacci
Numbers and import the module to another program.
15. Write a python program to define a module and import a specific
function in that module to another program
16. Write a script named copyfile.py. 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.
17. Write a program that inputs a text file. The program should print all of
the unique words in the file in alphabetical order.
Output:
18. Write a Python class to convert an integer to a roman numeral.
Output:
19. Write a Python class to implement pow (x, n)
Output:
20. Write a Python class to reverse a string word by word.
Firstly, I have created a class called Reverse
After that, we have defined the function inside the class
Now, we will split the sentence into a list of words, and to
form the new sentence join() is used for joining the words in
the list.
At last, print Reverse().reverse_word(‘Welcome to
Python’) to get the output.
21. Python Program for Find remainder of array multiplication divided by
n
22. Python Program for cube sum of first n natural numbers
23. Python program to check whether a number is Prime or not
24. Python Program for Program to find area of a circle
25. Python Program for compound interest
26. Python program to print positive numbers in a list
Output:
27. Remove multiple elements from a list in Python
Output:
28. Python program to interchange first and last elements in a list
29. Program to accept the strings which contains all vowels
30. Convert Snake case to Pascal case
Output:
31. Convert a list of Tuples into Dictionary
32. Python program to sort a list of tuples by second Item
Output:
[('Geeksforgeeks', 5), ('is', 10), ('a', 15), ('portal', 20),
('for', 24), ('Geeks', 28)]
33. Python program to check if a string is palindrome or not
34. Python program to check whether the string is Symmetrical or
Palindrome
35. Python Program for Sum of squares of first n natural numbers