标签:function strong container ring nbsp span number while div
今天在电脑上安装了Python 3.7和pycharm软件。
Python相对于Java、C#,运行速度可能稍慢,但开发效率是最高的。
武老师
http://www.cnblogs.com/wupeiqi/articles/5433925.html
重点内容:
Python的安装、更新
代码、解释器、内容编码、注释
变量、输入
流程控制和缩进
if判断、while循环
作业
1、使用while循环输入 1 2 3 4 5 6 8 9 10
1
2
3
4
5
6
7
8
|
#!/usr/bin/python
#_*_ coding:utf-8 _*_ while True : number = int ( input ( ‘请输入数字: ‘ )) if number = = 7 : continue elif number > 10 : exit() print (number) |
2、求1-100的所有数的和
3、输出 1-100 内的所有奇数
4、输出 1-100 内的所有偶数
5、求1-2+3-4+5 ... 99的所有数的和
6、用户登陆(三次机会重试)
标签:function strong container ring nbsp span number while div
原文地址:https://www.cnblogs.com/OpenMindTomPython/p/10446190.html