Discuss / Python / 练习

练习

Topic source

练习

# -*- coding: utf-8 -*-
L = ['Bart', 'Lisa', 'Adam']
for i in L:
    print('Hello,%s!'%i)

死循环

# -*- coding: utf-8 -*-
while True:
    pass

  • 1

Reply