Discuss / Python / daily work

daily work

Topic source

无愠无殇

#1 Created at ... [Delete] [Delete and Lock User]
# -*- coding: utf-8 -*-
L = ['Bart', 'Lisa', 'Adam']

n = len(L) - 1

while n >= 0 :
    print('Hello ,%s ' %L[n])
    n = n - 1

  • 1

Reply