range用法

tslam / 2023-08-18 / 原文

示例

range(start, stop, step)

for i in range(0, 100, 4):

    print(i)