Discuss / Python / day2

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

n=len(L)-1

while n>=0:

    print('Hello,',L[n],'!')

    n=n-1


  • 1

Reply