Python基础(一)
2020-12-13 03:50
标签:mic ber str int inf 使用 习题 pytho 练习 Python代码 输出如下 Python代码 输出如下 Python代码 输出如下 Python代码 输出如下 Python代码 输出如下 Python基础(一) 标签:mic ber str int inf 使用 习题 pytho 练习 原文地址:https://www.cnblogs.com/huangwenhao/p/11090495.html几个简单的Python练习题
1.使用while循环输出1到9
1 counter = 1
2 while counter :
3 print(counter)
4 counter += 1
2.求出1到100所有数的和
1 counter = 1
2 result = 0
3 while counter :
4 result += counter
5 counter += 1
6 print("sum of 1 to 100:", str(result))
3.输出1到100内的所有基数
1 counter = 1
2 print("odd numbers of 1 to 100:")
3 while counter :
4 if counter % 2 == 1:
5 print(counter)
6 counter += 1
4.输出1到100内的所有偶数
1 counter = 1
2 print("odd numbers of 1 to 100:")
3 while counter :
4 if counter % 2 == 0:
5 print(counter)
6 counter += 1
5.求1-2+3-4+5..+99所有数的和
1 counter = 1
2 result = 0
3 while counter :
4 if counter % 2 == 1:
5 result += counter
6 elif counter %2 == 0:
7 result -= counter
8 counter += 1
9 print("sum of 1-2+3-4...+99:", str(result))