使用 while 循环写出整数1到10的累加。写出 python 代码,注意缩进..
时间: 2023-05-23 10:03:25 浏览: 175
当然可以,下面是 python 代码:
``` python
num = 1
total = 0
while num <= 10:
total += num
num += 1
print(total)
```
以上就是使用 while 循环写出整数1到10的累加的 python 代码,其中 total 表示累加结果,num 表示计数器。循环执行了10次,每次将 num 加到 total 中,最后输出总和。
阅读全文