标签:内置函数 生成 函数 item for while 循环语句 pre 循环
while True: print("genben") hero=["盖伦","亚索","刀妹","瑞文"] for item in hero: print(item) # range 生成数列 内置函数 for i in range(0,5): print(i) for x in range(0,len(hero)): print(hero[x])
标签:内置函数 生成 函数 item for while 循环语句 pre 循环
原文地址:https://www.cnblogs.com/waox/p/12120509.html