Print the value of variable by entering the negative 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]) Output Enter the position : 3apple View All Python Programs