Python 练习实例45
题目:统计 1 到 100 之和。
程序分析:无
程序源代码:
实例
#!/usr/bin/python
# -*- coding: UTF-8 -*-
tmp = 0
for i in range(1,101):
tmp += i
print ('The sum is %d' % tmp)
以上实例输出结果为:
The sum is 5050
题目:统计 1 到 100 之和。
程序分析:无
程序源代码:
以上实例输出结果为:
The sum is 5050
kui
che***[email protected]
以下代码同样实现了计算 1 到 100 之和:
kui
che***[email protected]
等一个人
252***[email protected]
参考方案:
等一个人
252***[email protected]
种花家兔子
xyt***[email protected]
使用 sum() 函数:
种花家兔子
xyt***[email protected]
ICE·
361***[email protected]
参考方法:
ICE·
361***[email protected]
jc
228***[email protected]
使用匿名函数:
jc
228***[email protected]
yulinshui
132***[email protected]
使用while循环统计
yulinshui
132***[email protected]
123
117***[email protected]
递归方法:
123
117***[email protected]