how to use python to calculate"1+3+5+…+99"
时间: 2024-01-02 12:01:38 浏览: 82
python+tkinter, gui, 计算器实现
您可以使用Python的循环语句和算术运算符来计算求和。以下是一个使用for循环的示例代码:
sum = 0
for i in range(1, 100, 2):
sum += i
print("Sum of odd numbers from 1 to 99 is:", sum)
输出结果将为:
Sum of odd numbers from 1 to 99 is: 2500
阅读全文