pythond for循环递减
时间: 2023-12-29 09:25:34 浏览: 105
python for循环
以下是Python中使用for循环递减的示例:
```python
for i in range(10, 0, -1):
print(i, end=" ")
```
输出结果为:10 9 8 7 6 5 4 3 2 1
在这个示例中,我们使用了`range()`函数来生成一个从10到1的递减序列,步长为-1。然后,我们使用for循环遍历这个序列,并打印每个数字。
阅读全文