Discuss / Python / 循环

循环

Topic source
L = ['Bart', 'Lisa', 'Adam']
for i in L:
    print('hello,%s!' %i)

  • 1

Reply