1.计算机历史
2.python历史
宏观:
python2和python3的区别:
python2 源码不标准,混乱,重复代码过多
python3 统一标准,去除重复代码
3.python环境
编译型:C,C++;一次性将所有的程序编译成二进制文件
缺点:开发效率低,不能跨平台
优点:运行速度快
解释型:python,php;程序执行时,一行一行解释
缺点:运行速度慢
优点:开发效率高,可以跨平台
4.python的发展
5.Python的种类
python运行py文件:
python3x :python+空格+文件路径:文件名 回车
python2x:python2+空格+文件路径:文件名 回车
python2和python3的区别:
python2默认编码方式是ascii码,解决方式:在文件的首行:#-*-encoding:utf-8 -*-
python3默认编码方式是utf-8
6.变量
由数字字母下划线任意组合,数字不能开头;不能是Python中的关键字
#判断变量
t-t = 2
3t_t = 23
*r = 4
_ = 'fdsa'
___ = 4
%- = 'fdsa'
2w = 5
qwe-r = 'wer'
7.常量
约定俗成,不可更改,全部是大写字母
8.注释
方便他人理解代码
单行注释:#
多行注释:‘’‘ 被注释内容 ’‘’ """备注是内容"""
9.用户交互:input
1.等待输入
2.将你输入的内容赋值给前面变量
3.input的输出数据类型全是str(字符串)
name=input('请输入你的名字:')
age=input('请输入你的年龄:')
print ('我的名字'+name,'我的年龄'+age+'岁')
10.基础数据类型:
bool布尔值:True False
int数字:+ -*/%//**
str字符串:python中凡是加引号的都是str;可相加:字符串的连接;可相乘:str*int
查看数据类型:type()
字符串转化成数字:int(str) 条件:str必须是数字
数字转化成字符串:str(int)
a = '泰哥'
b = '小二'
c = a + b
print(c)
print('泰哥' + '小二' +'货') print('坚强'*8)
print(100,type(100))
print('',type(''))
11.if语句
第一种:
if 条件:
结果
第二种:
if 条件:
结果
else:
结果
第三种:
if 条件:
结果
elif 条件:
结果
.........
else:结果
第四种:
if 条件:
if 条件:结果
if....
else:结果
#第一种
print(111)
if False:
print(666)
print(777) #第二种
if 4 > 3:
print('我请你喝酒')
else:
print('喝什么酒') #第三种多选
num = input ('q请输入你猜的数字:') if num == '':
print ('一起抽烟')
elif num == '':
print ('一起喝酒')
elif num == '':
print ('新开了一家,走')
else:
print ('你猜错了') #第四种嵌套
name = input('请输入名字:')
age = input ('请输入年龄:')
if name =='小二':
if age == '':
print (666)
else :
print (333)
else:
print ('错了....')'''
12.while语句
while 条件:
结果
终止循环方法:改变条件;break
continue:结束本次循环,继续下次循环。
#while
print('')
while True :
print('我们不一样')
print('在人间')
print('痒')
ptint('') #从1-100
count = 1
flag = True
#标志位
while flag:
print (count)
count = count + 1
if count > 100:
flag = False count = 1
while count <= 100:
print (count)
count = count + 1 count = 1
sum = 0 while count <= 100: sum =sum + count
count = count +1
print (sum) #break
print ('')
while True:
print ('')
print (333)
break
print (444)
print ('abc') count = 1
while True:
print (count)
count = count + 1
if count > 100 :break print (111)
count = 1
while count < 20:
print (count)
continue
count = count + 1
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 == 7:
print(' ')
else :
print(count) #21-100的和
count=1
sum=0
while count<100:
sum=sum+count
count=count+1
print(sum) #31-100的所有奇数
#方法1
count=1
while count<101:
print(count)
count+=2
#方法2
count=1
while count<=100:
if count%2!=0 :
print(count)
count=count+1 #41-100所有偶数
#方法1
count=2
while count < 101:
print(count)
count += 2
#方法2
count=1
while count<101:
if count%2==0:
print(count)
count+=1 #51-99奇数之和减去偶数之和
count = 1
sum = 0
while count < 100:
if count%2 != 0:
sum+=count
else:
sum-=count
count += 1
print(sum) #6用户登录(三次机会)
i=0
while i < 3:
username = input('请输入用户名:')
password = input('请输入用户密码:')
if username =='小小哥' and password == 'gcs':
print('登陆成功')
else:
print('登录失败')
i+=1