Python Program For Workshop
Python Program For Workshop
Conditional statement
46. Write a program to find greatest between two numbers.
47. Write a program to Accept two Integers and Check if they are Equal.
48. Write a program to Check if a given Integer is Positive or Negative.
49. Write a program to Check if a given Integer is Odd or Even.
50. Write a program to Check if a given Integer is Divisible by 5 or not.
51. Write a program to Check if a given Integer is Divisible by 7 or not.
52. Write a program to Accept two Integers and Check if they are Equal.
53. Write a program to find the greatest of three numbers using else if ladder.
54. Write a program to find the greatest of three numbers using Nested if.
55. Write a program to convert an Upper case character into lower case and vice-versa.
56. Write a program to check weather an entered year is leap year or not.
57. Write a Program to check whether an alphabet entered by the user is a vowel or a constant.
58. Write a program to Read a Coordinate Point and Determine its Quadrant.
59. Write a program to Add two Complex Numbers.
60. Write a Program to find roots of a quadratic expression.
61. Write a program to print day according to the day number entered by the user.
62. Write a program to print color name, if user enters the first letter of the color name.
63. Write a program to Simulate Arithmetic Calculator.
64. Write a menu driven program for calculating area of different geometrical figures such as circle,
square, rectangle, and triangle.
LOOPS:
65. Write a program to display numbers 1 to 10.
66. Write a program to display all even numbers from 1 to 20
67. Write a program to display all odd numbers from 1 to 20
68. Write a program to print all the Numbers Divisible by 7 from 1 to 100.
69. Write a program to print table of 2.
70. Write a program to print table of 5.
71. Write a program to print table of any number.
72. Write a program to print table of 5 in following format.
5X1=5
5 X 2 = 10
5 X 3 = 15
73. Write a program to Find the Sum of first 50 Natural Numbers using for Loop.
74. Write a program to calculate factorial of a given number using for loop.
75. Write a program to calculate factorial of a given number using while loop.
76. Write a program to count the sum of digits in the entered number.
77. Write a program to find the reverse of a given number.
78. Write a program to Check whether a given Number is Perfect Number.
79. Write a program program to check if the given number is a Disarium Number (11+ 72 + 53 = 1+ 49 + 125
= 175).
80. Write a program to determine whether the given number is a Harshad Number (If a number is divisible
by the sum of its digits, then it will be known as a Harshad Number).
81. Write a program to Print Armstrong Number from 1 to 1000.
82. Write a program to Compute the Value of Xn.
83. Write a program to Calculate the value of nCr.
84. Write a program to generate the Fibonacci Series.
85. Write a program to Print First 10 Natural Numbers.
86. Write a program to check whether a given Number is Palindrome or Not.
87. Write a program to Check whether a given Number is an Armstrong Number.
88. Write a program to Check Whether given Number is Perfect or Not.
89. Write a program to check weather a given number is prime number or not.
90. Write a program to print all prime numbers from 1-500.
91. Write a program to find the Sum of all prime numbers from 1-1000.
92. Write a program to display the following pattern:
*****
*****
*****
*****
*****
93. Write a program to display the following pattern:
*
**
***
****
*****
94. Write a program to display the following pattern:
1
12
123
1234
12345
95. Write a program to display the following pattern:
1
22
333
4444
55555
Functions
156. Write a Python function to find the Max of three numbers.
157. Write a Python function to sum all the numbers in a list.
Sample List : (8, 2, 3, 0, 7)
Expected Output : 20
158. Write a Python function to multiply all the numbers in a list.
Sample List : (8, 2, 3, -1, 7)
Expected Output : -336
159. Write a Python program to reverse a string.
Sample String : "1234abcd"
Expected Output : "dcba4321"
160. Write a Python function to calculate the factorial of a number (a non-negative integer). The function
accepts the number as an argument.
161. Write a Python function to check whether a number falls in a given range.
162. Write a Python function that accepts a string and calculate the number of upper case letters and
lower case letters.
Sample String : 'The quick Brow Fox'
Expected Output :
No. of Upper case characters : 3
No. of Lower case Characters : 12
163. Write a Python function that takes a list and returns a new list with unique elements of the first list.
Sample List : [1,2,3,3,3,3,4,5]
Unique List : [1, 2, 3, 4, 5]
164. Write a Python function that takes a number as a parameter and check the number is prime or not.
165. Write a Python program to print the even numbers from a given list.
Sample List : [1, 2, 3, 4, 5, 6, 7, 8, 9]
Expected Result : [2, 4, 6, 8]
166. Write a Python function to check whether a number is perfect or not.
In number theory, a perfect number is a positive integer that is equal to the sum of its proper positive divisors,
that is, the sum of its positive divisors excluding the number itself.
Example : The first perfect number is 6, because 1, 2, and 3 are its proper positive divisors, and 1 + 2 + 3 = 6. The
next perfect number is 28 = 1 + 2 + 4 + 7 + 14. This is followed by the perfect numbers 496 and 8128.
167. Write a Python function that checks whether a passed string is palindrome or not.
Note: A palindrome is a word, phrase, or sequence that reads the same backward as forward, e.g.,
madam or nurses run.
168. Write a Python function that prints out the first n rows of Pascal's triangle.
Note : Pascal's triangle is an arithmetic and geometric figure first imagined by Blaise Pascal.
Sample Pascal's triangle :
String:
203. Python program to check if a string is palindrome or not
204. Python program to check whether the string is Symmetrical or Palindrome
205. Reverse words in a given String in Python
206. Ways to remove i’th character from string in Python
207. Python | Check if a Substring is Present in a Given String
208. Python – Words Frequency in String Shorthands
209. Find length of a string in python (4 ways)
210. Python program to print even length words in a string
211. Python program to accept the strings which contains all vowels
212. Python | Count the Number of matching characters in a pair of string
213. Remove all duplicates from a given string in Python
214. Python – Least Frequent Character in String
215. Python | Maximum frequency character in String
216. Python | Program to check if a string contains any special character
217. Generating random strings until a given string is generated
218. Find words which are greater than given length k
219. Python program for removing i-th character from a string
220. Python program to split and join a string
221. Python | Check if a given string is binary string or not
222. Python program to find uncommon words from two Strings
223. Python – Replace duplicate Occurrence in String
224. Python – Replace multiple words with K
225. Python | Permutation of a given string using inbuilt function
226. Python | Check for URL in a String
227. Execute a String of Code in Python
228. String slicing in Python to rotate a string
229. String slicing in Python to check if a string can become empty by recursive deletion
230. Python Counter| Find all duplicate characters in string
231. Python – Replace all occurrences of a substring in a string
232. Python Program to Replace all Occurrences of ‘a’ with $ in a String
233. Python Program to Remove the nth Index Character from a Non-Empty String
234. Python Program to Detect if Two Strings are Anagrams
235. Python Program to Form a New String where the First Character and the Last Character have been
Exchanged
236. Python Program to Count the Number of Vowels in a String
237. Python Program to Take in a String and Replace Every Blank Space with Hyphen
238. Python Program to Calculate the Length of a String Without Using a Library Function
239. Python Program to Remove the Characters of Odd Index Values in a String
240. Python Program to Calculate the Number of Words and the Number of Characters Present in a String
241. Python Program to Take in Two Strings and Display the Larger String without Using Built-in Functions
242. Python Program to Count Number of Lowercase Characters in a String
243. Python Program to Check if a String is a Palindrome or Not
244. Python Program to Calculate the Number of Upper Case Letters and Lower Case Letters in a String
245. Python Program to Check if a String is a Pangram or Not
(A pangram is a sentence that uses all 26 letters of the English alphabet at least once. like ” The quick brown fox
jumps over the lazy dog”)
246. Python Program to Accept a Hyphen Separated Sequence of Words as Input and Print the Words in a
Hyphen-Separated Sequence after Sorting them Alphabetically
247. Python Program to Calculate the Number of Digits and Letters in a String
248. Python Program to Form a New String Made of the First 2 and Last 2 characters From a Given String
249. Python Program to Count the Occurrences of Each Word in a Given String Sentence
250. Python Program to Check if a Substring is Present in a Given String
251. Python Program to Print All Permutations of a String in Lexicographic Order without Recursion
252. Python Program to Print All Permutations of a String in Lexicographic Order using Recursion
LIST
253. Program to interchange first and last elements in a list
254. Program to swap two elements in a list
255. Program to find length of list
256. Program to check if element exists in list
257. Different ways to clear a list in Python
258. Program for Reversing a List
259. Program to find sum of elements in list
260. Program to Multiply all numbers in the list
261. Program to find smallest number in a list
262. Program to find largest number in a list
263. Program to find second largest number in a list
264. Program to find N largest elements from a list
265. Program to print even numbers in a list
266. Program to print odd numbers in a List
267. Program to print all even numbers in a range
268. Program to print all odd numbers in a range
269. Program to print positive numbers in a list
270. Program to print negative numbers in a list
271. Program to print all positive numbers in a range
272. Program to print all negative numbers in a range
273. Program to Remove multiple elements from a list in Python
274. Program to Remove empty List from List
275. Program to Cloning or Copying a list
276. Program to Count occurrences of an element in a list
277. Program to print duplicates from a list of integers
278. Program to find Cumulative sum of a list
279. Program to Break a list into chunks of size N in Python
280. Program to add two Matrices
281. Program to multiply two matrices
282. Program for Matrix Product
283. Program for Addition and of two Matrices in Python
284. Transpose a matrix in Python
285. Program to get Kth Column of Matrix
Tuple:
Set:
299. Python Program to Count the Number of Vowels Present in a String using Sets
300. Python Program to Check Common Letters in Two Input Strings
301. Python Program that Displays which Letters are in the First String but not in the Second
302. Python Program that Displays which Letters are Present in Both the Strings
303. Python Program that Displays which Letters are in the Two Strings but not in Both
Dictionary:
304. Python Program to Add a Key-Value Pair to the Dictionary
305. Python Program to Concatenate Two Dictionaries Into One
306. Python Program to Check if a Given Key Exists in a Dictionary or Not
307. Python Program to Generate a Dictionary that Contains Numbers (between 1 and n) in the Form
(x,x*x).
308. Python Program to Sum All the Items in a Dictionary
309. Python Program to Multiply All the Items in a Dictionary
310. Python Program to Remove the Given Key from a Dictionary
311. Python Program to Form a Dictionary from an Object of a Class
312. Python Program to Map Two Lists into a Dictionary
313. Python Program to Count the Frequency of Words Appearing in a String Using a Dictionary
314. Python Program to Create a Dictionary with Key as First Character and Value as Words Starting with
that Character