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...
Class 11th IP (065) Write a Python program to print the highest and lowest values in the dictionary. SOLUTION.. data = {} n = int(input("Enter number of entries: "))...
Class 11th IP (065) Create a dictionary of students to store names and marks obtained in 5 subjects. SOLUTION.. students = {} n = int(input("Enter number of students: "))...
Class 11th IP (065) Write a Python Program to print the words starting with an alphabet in a user entered string. SOLUTION.. s = input("Enter sentence: ") ch =...
Class 11th IP (065) Write a Python program to find the third largest/smallest number in a list. SOLUTION.. lst = n = int(input("Enter how many numbers you want...
Class 11th IP (065) Write a Python Program to calculate EMI for Amount, Period and Interest. SOLUTION.. p = float(input("Loan Amount: ")) r = float(input("Annual Interest Rate: ")) n...
Class 11th IP (065) Write a Python Program to calculate profit-loss for given Cost and Sell Price. SOLUTION.. cp = float(input("Cost Price: ")) sp = float(input("Selling Price: ")) if...