Discuss / Python / xiao

L = ['Bart', 'Lisa', 'Adam']

i= len(L)-1

while -1<i<3:

    print(L[i])

    i=i-1


  • 1

Reply