PYTHON DICTIONARY PRACTICAL QUESTIONS GRADE XI #to add new values into the dictionary d={} n=int(input("how many elements u want to enter")) for i in range(n): r=input("enter rollno") n=input("enter name") m=int(input("enter marks")) d[r]=n,m print(d) ''' #--------------------------------------------- #to display elements of a dictionary d={'a001': ('teena', 65), 'a002': ('sheena', 78), 'a003': ('piyush', 87)} print(d) #to search a particular key according to user's choice and display values s=input("enter the key which u want to search") for i in d: if(i==s): print(d[i]) Dictionary Q1 Explain the following functions in reference to dictionary. a. Items() b. Keys()...