Python3 循环
L = ['Bart', 'Lisa', 'Adam']
for i in L:
print("这是for循环的" + "输出 hello:" + i.upper())
i = 0
while i < len(L):
print("这是while 循环的输出 hello:" + L[i])
i = i + 1

L = ['Bart', 'Lisa', 'Adam']
for i in L:
print("这是for循环的" + "输出 hello:" + i.upper())
i = 0
while i < len(L):
print("这是while 循环的输出 hello:" + L[i])
i = i + 1
