Discuss / Python / 练习

练习

Topic source

L=['Bart','Lisa','Adam'] n=len(L)

while n >0: print('Hello,'+str(L[n-1])+'!') n=n-1


  • 1

Reply