标签:取值 step 技巧 小技巧 常用 for pre 打印 列表
a = [1, 2, 3, 4, 5, 6, 7] step = 3 for i in range(0, len(a), step): print(a[i:i+step])
打印结果:
[1, 2, 3] [4, 5, 6] [7]
python常用小技巧
原文地址:https://blog.51cto.com/fengjicheng/2462218