python的应用领域
Python的特点
python运算符优先级
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-GnGRrkeB-1612941217679)(C:\Users\fylal\AppData\Roaming\Typora\typora-user-images\image-20210208104803672.png)]
基本数据类型
类型转换
基本运算符
print(1+2) # 加法
print(1-2) # 减法
print(1*2) # 乘法
print(1/2) # 除法
print(1//2) # 整除 (向下取整)
print(1%2) # 取余数
print(2**2) # 幂运算
起名法则
标识符由字母,下划线,数字组成,标识符第一个字符不能为数字。
注意:标识符命名不能和关键字名字一样
查看关键字方法:
import keyword
print(keyword.kwlist)
组合数据类型
list是一种有序的组合,可以随时添加和删除其中的元素。
list1=[1,2,3,4,5]
list2=['a','b','c','d','a']
list3=['a','d',1,2]
len(list1) # 求list1的长度
list1[4] # 取list1下标为4的数,下标从0开始正着数或者从-1倒着数
#********list常用函数***********
list3.append(3) # 在list3的后面添加数字3
# 删除元素
list1.pop() # 默认弹出最后一个数字,list1的长度减1
list1.pop(4) # 将list1中的下标为4的数弹出
list2.remove('a') # 移除找到的第一个字符
# 插入元素
list2.insert(2, 'ooo') # 在指定位置添加元素,如果指定的下标不存在,那么就是在末尾添加
# count计数和index查找
print(list2.count('a'))
print(list.index('a'))
print(list2)
list1.extend(list2) # 合并两个list,list2中仍有元素
list索引、切片
list1 = ['a','b','c','d','e','f']
list1[2]
list1[2:5]
另一种有序列表,tuple和list类似,但tuple一旦初始化就不能修改,无append()、pop()函数
tuple1=(1,2,3,4,5)
tuple2=('a','b','c','d')
tuple3=('a','d',1,2)
len(tuple1)
dict全程dictionary,使用key-value存储,具有极快的查找速度。
word = {
'apple':'苹果','banana':'香蕉'}
scores = {
'小张':100, '小李':80}
grad = {
4:'很好',3: '好',2:'中',1:'差',0:'很差'}
scores['小张']
grad[3]
scores['小赵']=60 # 查找字典中是否有小赵,无就添加,有就修改
set和dict类似,是一组key的集合,但不存储value。且key不能重复。
s={
1,1,2,3,4} # 输出:{1,2,3,4}
# 类型转换
set([1,1,2,3,4]) # 列表→集合
list({
1,1,2,3,4}) # 集合→列表
list((1,2,3)) # 元组→列表
流程控制:条件判断和循环
if语句
if 条件:
语句
else:
多重条件语句
if 条件:
语句
elif 条件:
语句
else:
语句
例子:
score = 80
if score < 60:
print('不及格')
else:
print('及格')
while
number = 1
while number<10: # 注意边界条件
print(number)
number+=1
for循环
for循环可以遍历任何序列的项目,如一个列表或者一个字符串
# 打印1到9
for i in range(9):
print(i+1)
fruits = ['banana', 'apple', 'mango']
for fruit in fruits:
print( '当前水果 :', fruit)
for letter in 'Python': # 第二个实例
print( '当前字母 :', letter)
for循环扩展
对list_1操作,对每一个数加1
#方法一:
list_1=[1,2,3,4,5]
list_2=[]
for i in range(len(list_1)):
list_2[i]+=1
print(list_2)
#方法二:
list_2=[n+1 for n in list_1]
print(list_2)
判断list_1中的奇数
#方法一:
for i in range(len(list_1)):
if list_1[i]%2==1:
list_2.append(list_1[i])
print(list_2)
#方法二:
list_2=[n for n in list_1 if n%2==1]
在list_A 但是不在list_B中
list_A = [1,3,6,7,32,65,12]
list_B = [2,6,3,5,12]
[n for n in list_A for n not in list_B
break vs continue
使用break语句来完全终止循环
使用continue语句直接跳到循环的下一次迭代
例子:
# 查找list_1 中的数字
list_1 = [1,6,3,2,8,4]
for number in list_1:
if number == 3:
print('找到了!')
break
# 打印1-10中的偶数
for i in range(10):
num = i+1
if num%2 == 0:
print(num)
else:
continue
字符串进阶
字符串索引、切片
切片:[起始:结束:步长],默认值:截取方向为从左往右,起始为0,结束为字符串结尾元素,步长为1。切片范围为左闭右开。包含左范围,不包含有范围。
注:当步长为-1时,截取方向为从右往左
name = 'hello world!'
name[1]
name[-4] # 结果为r
name[1:4] # 结果为ell
name[::-1] # 结果为!dlrow olleh
name[3:] # 结果为lo world!
name[8:2:-1] # 结果为row ol
字符串常用函数
count 计数功能
my_string = 'hello_world'
my_string.count('o')
# 查看帮助
help(my_string.count)
find 查找功能
返回从左第一个指定字符的索引,找不到返回-1
my_string = 'hello_world'
my_string.find('o') # 结果为3
index 查找
返回从左第一个指定字符的索引,找不到报错
my_string = 'hello_world'
my_string.index('o') # 结果为3
以某字符开头或结尾
startswith()、endswith()
my_string = 'hello_world'
my_string.startswith('hello') # 是否以hello开始
my_string.endswith('world') # 是否以world结尾
split 字符串的拆分
按照指定的内容进行分割
my_string = 'hello_world'
my_string.split('_')
字符串的替换
从左到右替换指定的元素,可以指定替换的个数,默认全部替换
my_string = 'hello_world_world_world'
my_string.replace('_',' ')
my_string.replace('world','world',upper(),2) # 换前两个
字符串标准化
默认去除两边的空格、换行符之类的,去除内容可以指定
my_string = ' hello world\n'
my_string.strip() # 结果为hello world
字符串的变形
my_string = 'hello_world'
my_string.upper() # 所有字母大写
my_string.lower() # 所有字母小写
my_string.capitalize() # 首字母大写
字符串的格式化输出
%
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-FCRXqz9Q-1612941217687)(C:\Users\fylal\AppData\Roaming\Typora\typora-user-images\image-20210208121022991.png)]
accuracy=80/123
print('我的模型正确率为',accuracy,'!')
accuracy=80/123
print('我的模型正确率为%s' %accuracy)
name='Merry'
hight=170
score_math=95
score_english=89
print('大家好!我叫%s,我的身高是%d cm,数学成绩%.2f分,英语成绩%d分' %(name,hight,score_math,score_english))
format
指定了:s,则只能穿字符串值,如果传其他类型值不会自动转换
当不指定类型时,可以传任何类型
print('大家好!,我叫{:s},我的身高是{:d}cm,数学成绩{:.2f}分,英语成绩{}分'.format(name,int(hight),score_math,score_english))
print('Hello,{0},成绩提升了{1:0.1f},百分比{2:0.1f}%'\
.format('小明',6,80.5))
print('Hello,{name:},成绩提升了{score:.1f}分,百分比为{percent:.2f}%'.format(name='小明',score=6,percent=80.5))
f-string
name='Merry'
hight=170.5
score_math=95
score_english=89
print(f"大家好!我叫{name},我的身高{hight:.3f}cm,数学成绩{score_math}分,英语成绩{score_english}分")