当前分类:300例题>>正文

Python示例:打印前 10 个奇数

来源:互联网   更新时间:2023年6月18日  

Python 示例

编写一个 Python示例,使用 for 循环打印前 10 个奇数自然数。

print("====The First 10 Odd Natural Numbers====")

for i in range(1, 11):
    print(2 * i - 1)

这个 Python示例使用 while 循环显示前 10 个奇数自然数。

print("====The First 10 Odd Natural Numbers====")
i = 1

while(i <= 10):
    print(2 * i - 1)
    i = i + 1
====The First 10 Odd Natural Numbers====
1
3
5
7
9
11
13
15
17
19
本文固定链接:https://6yhj.com/leku-p-4288.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: python报错