Print the value of variable by entering the index position in python list Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code n=int(input(“Enter the position : “))thislist=[“apple”,”banana”,”cherry”]print(thislist[n-1]) Output Enter the position : 3cherry View All Python Programs