list
list,中文可以翻译成列表,是用来处理一组有序项目的数据结构。
在线运行演示代码
参考教程
print(list(range(1,5))) l = [1, 1, 2, 3, 5, 8, 13] for i in l: print(i, end=' ')