1、计算机基础。
看书
2、python历史。
宏观上:python2 与 python3 区别:
python2 源码不标准,混乱,重复代码太多,
python3 统一 标准,去除重复代码。
3、python的环境。
编译型:一次性将所有程序编译成二进制文件。
缺点:开发效率低,不能跨平台。
优点:运行速度快。
like:C,C++等等。
解释型:当程序执行时,一行一行的解释。
优点:开发效率高,可以跨平台。
缺点:运行速度慢。
like:python ,php,等等。
4、python的发展。
5、python种类。
运行第一个py文件:
python3x :python 文件路径 回车
python2x :python2 文件路径 回车
python2 python3 区别:python2默认编码方式是ascii码
解决方式:在文件的首行:#-*- encoding:utf-8 -*-
python3 默认编码方式utf-8
6、变量。
变量:就是将一些运算的中间结果暂存到内存中,以便后续代码调用。
1、必须由数字,字母,下划线任意组合,且不能数字开头。
2、不能是python中的关键字。
['and', 'as', 'assert', 'break', 'class', 'continue',
'def', 'del', 'elif', 'else', 'except', 'exec',
'finally', 'for', 'from', 'global', 'if', 'import',
'in', 'is', 'lambda', 'not', 'or', 'pass', 'print',
'raise', 'return', 'try', 'while', 'with', 'yield']
3、变量具有可描述性。
4、不能是中文。
7、常量。
一直不变的量。 π
BIR_OF_CHINA = 1949
8、注释。
方便自己方便他人理解代码。
单行注释:#
多行注释:'''被注释内容''' """被注释内容"""
ps:如果内容中有换行用 """ 表示,否则会出现语法错误
msg = """ 今天我想写首小诗, """ print(msg)
9、用户交互 (input)
1、等待输入
2、将你输入的内容赋值给了前面变量。
3、input出来的数据类型全部是str
10、基础数据类型初始
数字:int 1,2,3,4,5
+ - * / **
% 取余数
ps:type()
字符串转化成数字:int(str) 条件:str必须是数字组成的。
数字转化成字符串:str(int)
字符串:str,python当中凡是用引号引起来的都是字符串。
可相加:字符串的拼接。
可相乘:str * int
bool:布尔值。 True False。
11、if
if 条件:
结果
#第一种 if 4 > 5 : print ('一起来玩') else : print ('不玩不玩') #第二种 num = input ('请输入你喜欢的数字:') if num == '1' : print ('一起看书') elif num == '2' : print ('一起游戏') elif num == '3' : print ('一起跑步') else : print ('回家休息') #第三种 (if 的嵌套) name = input ('请输入你的名字:') age = input ('请输入你的年龄:') if name == '小弟' : if age == '20' : print ('正确了') else : print ('年龄不对') else : print ('姓名错了...')
12、while
while 条件:
循环体
无限循环
终止循环
#从1到100 count = 1 flag = True while flag : print (count) count = count + 1 if count > 100 : flag = False
1、改变条件,使其不成立。
2、break
#break用法 print('11') while True: print('222') print(333) break print(444) print('abc') #break用法 count = 1 while True : print(count) count = count + 1 if count > 100 :break
continue
count = 0 while count <= 100 : count += 1 if count > 5 and count < 95: continue print("loop ", count) print("-----out of while loop ------")
练习
1、使用while循环输入 1 2 3 4 5 6 8 9 10
#第一种 count = 0 while count < 10 : count = count + 1 if count > 6 and count < 8 : continue print (count)
#第二种 count = 0 while count < 10 : count += 1 if count == 7: continue print (count)
#第三种 count = 0 while count < 10 : count += 1 if count == 7: pass else : print (count)
2、求1-100的所有数的和
sum = 0 count = 1 while count <=100 : sum = sum + count count +=1 print(sum)
3、输出1-100内的所有奇数
#第一种 count = 1 while count < 101 : print(count) count += 2 #第二种 count = 0 while count < 100 : count = count + 1 if (count %2 == 1): print(count)
4、输入输出1-100内的所有偶数
count = 0 while count < 100 : count = count + 1 if (count %2 == 0): print(count)
5、求1-2+3-4+5...99的所有数的和
sum = 0 count = 1 while count < 100 : if count % 2 == 0 : sum = sum - count else : sum = sum + count count +=1 print(sum)
6、登录系统(只允许登录三次)
count = 0 while count < 3 : username = input('请输入用户名:') password = input('请输入密码:') if username == 'username' and password == 'password' : print('登录成功') else: print('登录失败重新登录') count = count + 1