📜  如何在python代码示例中打印从1到20的数字

📅  最后修改于: 2022-03-11 14:46:24.006000             🧑  作者: Mango

代码示例1
for i in range(1, 21):
    print(i)