python Python:For Loop,Range

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python:For Loop,Range相关的知识,希望对你有一定的参考价值。

n = 3
for i in range(n):
    print(i+1)  # i starts at zero -> 0, 1, 2, 3
# 1
# 2
# 3

以上是关于python Python:For Loop,Range的主要内容,如果未能解决你的问题,请参考以下文章

python,带有'def'和'for-loop'的指数

Day1_Python基础_14.表达式for loop

我想将'for-loop'的结果保存为python中的文本文件

Learn Python 012: for loop

python怎样用最简单的for loop求list中的最大值

带有条件语句的 For-Loop 输出问题 - python