L = ['Bart', 'Lisa', 'Adam']for i in L: print("这是for循环的" + "输出 hello:" + i.upper())i = 0while i < len(L): print("这是while 循环的输出 hello:" + L[i]) i = i + 1
本文共 209 字,大约阅读时间需要 1 分钟。
L = ['Bart', 'Lisa', 'Adam']for i in L: print("这是for循环的" + "输出 hello:" + i.upper())i = 0while i < len(L): print("这是while 循环的输出 hello:" + L[i]) i = i + 1
转载于:https://www.cnblogs.com/RHadoop-Hive/p/10432219.html