Enter the roll no. and print their name by using python list Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code n=int(input(“Enter the roll no. : “))rno=[1,2,3,4,5]name=[“Ayush”, “Akansha”, “Rajuesh”, “Piyush”, “Mahima”]print(rno[n-1],”-“,name[n-1]) Output Enter the roll no. : 33 – Rajesh View All Python Programs