Python开发第一篇基础题目
Posted Tanglaoer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python开发第一篇基础题目相关的知识,希望对你有一定的参考价值。
1.求1-2+3-4+5.....99的所有数的和
n = 1 s = 0 while n<100: temp = n%2 if temp == 0: #偶数 s = s-n else: s = s+n n = n+1 print(s)
2.求1-100的所有数的和
n = 1 s = 0 while n < 101: s = s+n n = n+1 print(s) #一行代码搞定 print (sum(range(101)))
3.九九乘法表
for i in range(1,10): for j in range(1,10): if i>=j: print("%s * %s == %s"%(j,i,i*j),end=" ") print("")
以上是关于Python开发第一篇基础题目的主要内容,如果未能解决你的问题,请参考以下文章