Discuss / Python / 循环打印

循环打印

Topic source

L = ['Bart', 'Lisa', 'Adam'] for i in L: print ('Hello,',i)

while True:
    print('死循环')

  • 1

Reply