Discuss / Python / for循环

for循环

Topic source

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

for name in L:

    print('hello,%s!'%name)


  • 1

Reply