Class 11th IP (065) Write a Python Program to Search an Element in a Dynamic Tuple SOLUTION.. t = () while True: print("n--- Tuple Menu ---") print("1. Create Tuple")...
Class 11th IP (065) Write a python program to find Largest and Smallest Element in a Dynamic Tuple SOLUTION.. t = () while True: print("n--- Tuple Menu ---") print("1....
Class 11th IP (065) Write a Python Program to create a Dynamic Tuple and Display Its Elements SOLUTION.. t = () while True: print("n--- Tuple Menu ---") print("1. Create...
Class 11th IP (065) Write a Python program to Find Highest and Lowest Value in a Dynamic Dictionary SOLUTION.. data = {} while True: print("n--- Dictionary Menu ---") print("1....
Class 11th IP (065) Write a Program to Search for a Key and Update Its Value SOLUTION.. data = {} # Dynamic dictionary creation n = int(input(“Enter number of...
Class 11th IP (065) Write a Program to create a Dynamic Dictionary (Key–Value Input & Display) SOLUTION.. data = {} while True: print("n--- Dictionary Menu ---") print("1. Add /...
Class 11th IP (065) Write a python Program to Search and Count an Element in Dynamic List SOLUTION.. lst = n = int(input("Enter number of elements: ")) for...
Class 11th IP (065) Write a Python Program to find Largest and Smallest Element in Dynamic List. SOLUTION.. lst = n = int(input("Enter number of elements: ")) for...
Class 11th IP (065) Create a Dynamic List and Perform Operations (Append, Insert, Remove, Display) SOLUTION.. lst = n = int(input("Enter number of elements: ")) for i in...
Class 11th IP (065) Write a Program to Check Whether the Given String is Palindrome or Not SOLUTION.. text = input("Enter a string: ") # Convert to lowercase to...