ASSIGNMENT Q. 25 25.Write a menu-driven Python program to create a Phone Book using a dictionary. Key = Person Name Value = Mobile Number The program should: Add Contact...
ASSIGNMENT Q.24 Q 24.Write a menu-driven Python program to perform the following operations on a dictionary like Add Key-Value Pair Update Value Delete KeySearch Key Display Dictionary Display Keys...
ASSIGNMENT Q.23 Q 23.Write a Python program to create a dictionary to store a student’s information like Accept the following details: Roll Number Name Course Semester Percentage Store the...
ASSIGNMENT Q.22 Q 22.Write a menu-driven Python program to store product names in a tuple and perform the following to : Display all products. Search a product. Count occurrences...
ASSIGNMENT Q.21 21. Write a menu-driven Python program to create a tuple containing 20 integers and display like : First five elements, Last five elements, Middle five elements, Every...
ASSIGNMENT Q.20 Q.20. Write a menu-driven Python program to perform the following operations on a tuple like Display Tuple, Find Length, Find Maximum Element , Find Minimum Element, Calculate...
ASSIGNMENT Q.19 19. Write a program to create a list of numbers and swap the content with the next value divisible by 5 # Program to swap each value...
ASSIGNMENT Q.18 18.Write a program to create a list of students’ marks with user-defined values and find the maximum. # Program to find maximum marks from a list marks...
ASSIGNMENT Q.17 17.Write a menu-driven Python program to check whether the email entered by the user is valid. Conditions: Contains “@” Contains “.” No spaces # Menu-driven program to...
ASSIGNMENT Q.16 Q.16.Write a menu-driven Python program to converts a string into: Uppercase Lowercase Title Case Capitalized Swap Case # Menu-driven program for string case conversion text = input("Enter...