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
chen_kiu_1982@hotmail.com
以下代码同样实现了计算 1 到 100 之和:
kui
chen_kiu_1982@hotmail.com
等一个人
252343465@qq.com
参考方案:
等一个人
252343465@qq.com