Find the length of list in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code name=[“Ayush”, “Akansha”, “Rajesh”, “Piyush”, “Mahima”]print(“No of items on list is : “,len(name)) Output No of items in list is : 5 View All Python Programs