数据结构
range()
range(开始,结束),返回一个序列,左闭右开
Copy for i in range ( 10 ): #等价于range(0,10)
print (i)
range(开始,结束,步长)
Copy # 打印0到10的偶数
for i in range ( 0 , 11 , 2 ):
print (i)
字符串
字符串操作
字符串变量定义
s = "hello"
s = 'hello'
下标hello[01234]
通过下标获取指定位置的字符,string_name[index]
切片
切片的语法:string_name[起始:结束:步长]
代码
Copy s = "hello"
# 通过交表获取指定位置元素
print (s[ 1 ])
# 获取字符串长度
print ( len (s))
# 循环遍历字符串
for i in range ( 0 , len (s)):
print (s[i],end = "" )
print ( "" )
# 脚标 用负数表示倒着数
print (s[ - 1 ]) # 倒数第一个
print (s[ - 2 ]) # 倒数第二个
切片
Copy # 切片
# 注意:切片切出来的字符串是左闭右开的
line = "zhangsan,20"
name = line [ 0 : 8 : 1 ]
print (name)
age = line [ 9 :: 1 ] # 截取到最后,可以不加结束序号
print (age)
Copy # 切片步长
s = "abcde"
print (s[ 1 :]) # bcde
print (s[ 1 : - 1 ]) # bcd
print (s[ 1 : - 2 ]) # bc
# 隔一个位置取一个元素
print (s[ 0 :: 2 ]) # 等价于
print (s[:: 2 ]) # ace
字符串常用内置方法
find
在字符串中查找指定的子字符串是否存在,如果存在则返回第一个子字符串的起始下标,如果不存在则返回-1
replace
使用新的子字符串替换指定的子字符串,返回新的字符串
split
按照指定的分隔符字符串,返回分割之后的所有元素的列表
Copy # find
line = "hello world hello python"
print (line. find ( "hello" )) # 第一个子字符串的起始脚标
print (line. find ( "hello" , 6 )) # 从第六个脚标其开始查找 12
print (line. find ( "java" )) # 不存在,返回-1
# count
print (line. count ( "world" )) # 出现的次数
# replace 字符串是不可变类型
new_line = line . replace ( "hello" , "qqq" )
print (new_line)
# split分割
line_list = line . split ( " " )
print (line_list)
startswith
判断字符串是否以指定前缀开头,返回值为True或False
endswith
判断字符串是否以指定后缀结束,返回值为True或False
Copy # startswith
files = [ "20171201.txt" , "20180101.log" ]
for item in files :
if item . startswith ( "2018" ) and item . endswith ( "log" ):
print ( "2018年待处理日志: {} " . format (item))
Copy # upper lower 大小写
content = input ( "是否继续,继续输入yes,退出输入no" )
if content . lower () == "yes" :
print ( "欢迎继续使用" )
else :
print ( "退出,请取卡" )
列表
可理解为柜子,柜子里有不同的抽屉,可存储不同类型的值。
列表定义
name_list = ["zhangsan","lisi","wangwu"]
顺序存储,可通过下标获取内部元素
name_list[0]
name_list[1]
内容可变,可通过下角标修改元素值
name_list[0] = "xiaobai"
代码
基本操作
Copy name_list = [ "zhangsan" , "lisi" , "wangwu" ]
print (name_list) # ['zhangsan', 'lisi', 'wangwu']
print ( type (name_list)) # 类型<class 'list'>
# 脚标获取列表元素
print (name_list[ 0 ])
存储不同类型的元素,遍历列表
Copy # 存储不同类型的数据
info_list = [ "zhangsan" , 20 , 180.5 , 80 , True ]
print (info_list[ 4 ]) # True
info_list [ 3 ] = 70
print (info_list) # ['zhangsan', 20, 180.5, 70, True]
# 遍历列表,获取列表所有元素
# while循环
i = 0
while i < len (info_list):
print (info_list[i])
i += 1
# for循环,通过脚标
for i in range ( len (info_list)):
print (info_list[i])
# for循环,通过序列的每一个元素
for item in info_list :
print (item)
嵌套列表
Copy # 嵌套列表
info_lists = [[ "zhangsan" , 20 ] , [ "lisi" , 30 ] , [ "wangwu" , 40 ]]
print (info_lists[ 0 ]) # ['zhangsan', 20]
print (info_lists[ 0 ][ 0 ]) # zhangsan
# 循环遍历嵌套列表
for person in info_lists :
for item in person :
print (item)
print ( "-----------" )
对列表进行增删改查
append()/insert()添加元素
append()向列表末尾添加元素
Copy # append向列表末尾添加元素
info_lists = [[ "zhangsan" , 20 ] , [ "lisi" , 30 ] , [ "wangwu" , 40 ]]
info_lists . append ([ "xiaobai" , 25 ])
print (info_lists)
# [['zhangsan', 20], ['lisi', 30], ['wangwu', 40], ['xiaobai', 25]]
insert()可指定位置添加元素
Copy # insert(index, item)
info_lists = [[ "zhangsan" , 20 ] , [ "lisi" , 30 ] , [ "wangwu" , 40 ]]
info_lists . insert ( 1 ,[ "wangmazi" , 23 ])
print (info_lists)
# [['zhangsan', 20], ['wangmazi', 23], ['lisi', 30], ['wangwu', 40]]
“+”组合两个列表生成新的列表
Copy # 两个列表元素组合生成新的列表
name_list1 = [ "唐僧" , "悟空" , "八戒" ]
name_list2 = [ "沙僧" , "白龙马" ]
new_list = name_list1 + name_list2
print (new_list) # ['唐僧', '悟空', '八戒', '沙僧', '白龙马']
extend()向调用它的列表中添加另外一个列表的元素
Copy name_list1 = [ "唐僧" , "悟空" , "八戒" ]
name_list2 = [ "沙僧" , "白龙马" ]
name_list1 . extend (name_list2)
print (name_list1) # ['唐僧', '悟空', '八戒', '沙僧', '白龙马']
del()/pop()/remove()删除元素
Copy # 删除
name_list = [ "唐僧" , "悟空" , "八戒" , "沙僧" , "白龙马" ]
# 指定脚标
del name_list [ 1 ]
print (name_list)
# 指定元素名称
name_list . remove ( "八戒" )
print (name_list)
# 删除最后一个元素(未指定删除位置)
name_list . pop ()
print (name_list)
# 删除某个脚标
name_list . pop ( 1 )
print (name_list)
切片
和字符串的切片操作相同
Copy name_list = [ "唐僧" , "悟空" , "八戒" , "沙僧" , "白龙马" ]
print (name_list[ 1 :: 2 ]) # ['悟空', '沙僧']
in/not in 判断元素在列表中是否存在
Copy name_list = [ "唐僧" , "悟空" , "八戒" , "沙僧" , "白龙马" ]
print ( "悟空" in name_list) # True
print ( "如来" in name_list) # False
print ( "悟空" not in name_list) # False
print ( "如来" not in name_list) # True
sort()列表内元素重排序
默认从小到大排列
Copy # sort()
num_list = [ 6 , 3 , 12 , 1 ]
num_list . sort () # 默认升序
print (num_list) # [1, 3, 6, 12]
num_list . sort (reverse = True ) # 倒序排列
print (num_list) # [12, 6, 3, 1]
reverse()列表内容倒置
Copy num_list = [ 6 , 3 , 12 , 1 ]
num_list . reverse ()
print (num_list) #[1, 12, 3, 6]
count()统计列表内指定元素个数
Copy num_list = [ 6 , 3 , 12 , 1 , 6 , 6 ]
print (num_list. count ( 6 )) # 3
列表去重
使用内置set方法来去重:
Copy lst1 = [ 2 , 1 , 3 , 4 , 1 ]
lst2 = list ( set (lst1))
print (lst2)
# [1, 2, 3, 4]
元组
元组定义,使用()将元素括起来,元素之间用","隔开
只包含一个元素的元组:one_tuple = ("one",)
定义一个元素的元组,括号里一定要有一个逗号(,)
列表用于存储可变的元素,一般存储相同类型的元素。
元组不可变,通常存储一些不希望被改变的信息,如用户名,密码等。
Copy #定义元组,存储数据库信息
db_info = ( "192.169.1.1" , "root" , "root123" )
# 通过脚标查询元组中的元素
ip = db_info [ 0 ]
port = db_info [ 1 ]
print ( "ip: {} ,port: {} " . format (ip, port))
# ip:192.169.1.1,port:root
print ( type (ip)) #<class 'str'>
# 通过脚标来修改元组指定元素的值,这是不行的
db_info [ 1 ] = 8080
print (db_info)
# TypeError: 'tuple' object does not support item assignment
# del删除元组指定位置的元素,这是不行的
del db_info [ 1 ]
# TypeError: 'tuple' object doesn't support item deletion
# 定义一个元组
one_tuple = ( 123 , )
print (one_tuple) # (123,)
print ( type (one_tuple)) # <class 'tuple'>
# 错误的定义只包含一个元素的元组,少了元素后的逗号。
one_tuple1 = ( 123 )
print (one_tuple1) # 123
print ( type (one_tuple1)) # <class 'int'>
# 定义空元组
none_tuple = ()
print (none_tuple)
print ( type (none_tuple))
循环遍历元组
Copy # 循环遍历
db_info = ( "192.169.1.1" , "root" , "root123" )
# for循环
for item in db_info :
print (item)
# while循环
i = 0
while i < len (db_info):
print (db_info[i])
i += 1
字典
字典定义:{Key1 : value1, key2 : value2, ...}
内置方法get、keys、values、items、clear
基本操作
Copy user_if_dict = { "name" : "悟空" , "age" : 100 , "gender" : "male" , "job" : "取经" }
print("{}的年龄:{},性别:{},工作内容:{}".format(user_if_dict["name"],user_if_dict["age"],user_if_dict["gender"],user_if_dict["job"]))
# 通过Key修改已经存在的值
user_if_dict [ "job" ] = "取经|偷桃"
print (user_if_dict[ "job" ])
使用字典的原因:
存储大量数据也能够准确查找和修改。
不支持通过下标来查询指定位置的元素的值。
Key不能重复出现,否则后面的值会覆盖前面的值
Copy user_if_dict = { "name" : "悟空" , "age" : 100 , "gender" : "male" , "job" : "取经" , "name" : "白骨精" }
print("{}的年龄:{},性别:{},工作内容:{}".format(user_if_dict["name"],user_if_dict["age"],user_if_dict["gender"],user_if_dict["job"]))
字典的增删改查操作
Copy # 字典的增删改查操作
# 添加一个键值对
user_if_dict = { "name" : "悟空" , "age" : 100 , "gender" : "male" , "job" : "取经" }
user_if_dict [ "tel" ] = 13812345678
print (user_if_dict) # 5对
print ( len ((user_if_dict)))
# 修改字典中的指定的值
user_if_dict [ "tel" ] = 13811118888
print (user_if_dict)
# 删除元素
del user_if_dict [ "tel" ]
print (user_if_dict)
# 查询指定名字的元素
print (user_if_dict[ "name" ])
# 查询不存在的键,会报错
# 解决办法
# 方法一:in or not in
if "tel" in user_if_dict :
print (user_if_dict[ "tel" ])
else :
print ( "\"tel\"不存在" )
# 方法二: 字典内置的get方法
# 如果不存在,就会返回一个设定的默认值,用于缺省只补全
print (user_if_dict. get ( "tel" , "19911116666" )) # None
使用循环来遍历字典
Copy # 使用循环来遍历字典
# 字典内置的Keys方法,返回所有的Key组成一个序列
user_if_dict = { "name" : "悟空" , "age" : 100 , "gender" : "male" , "job" : "取经" , "name" : "白骨精" }
for key in user_if_dict . keys ():
print ( " {} : {} " . format (key, user_if_dict[key]),end = "|" )
# 字典内置的Values方法,返回所有的Value组成的一个序列
for value in user_if_dict . values ():
print (value) # 只能遍历出字典所有的值
# 返回字典的键值对,组成元组返回
for item in user_if_dict . items ():
print ( type (item)) # <class 'tuple'>
print (item) # ('name', '白骨精')
print (item[ 0 ]) # Key: name
print (item[ 1 ]) # Value: 白骨精
# 用两个变量分别接受字典的Key和Value
for key , value in user_if_dict . items ():
print ( " {} : {} " . format (key,value))
清空字典
Copy user_if_dict = { "name" : "悟空" , "age" : 100 , "gender" : "male" , "job" : "取经" , "name" : "白骨精" }
print (user_if_dict)
user_if_dict . clear ()
print (user_if_dict) # {}
集合
无序存储不同数据类型不重复元素的序列
即使填入多个相同的元素,也会被去重
集合定义:name_set={"xiaoming", "xiaoqiang", "xiaobai"}
使set对序列中元素去重,同时创建集合
例如:name_set = set(["xiaoming", "zhangsan"])
使用in和not in判断一个元素在集合中是否存在
使用update(序列)方法将一个序列中的元素添加到集合中,同时对元素去重
remove(元素)根据元素值删除集合中指定元素,如果元素不存在,则报错
discard(元素)根据元素值删除集合中指定元素,如果元素不存在,不会引发错误
pop()随机删除集合中的某个元素,并且返回被删除的元素
基本用法
Copy # 集合的定义,元素去重
student_set = { "zhangsan" , "lisi" , "wangwu" , "zhangsan" }
print (student_set) # 无序,去重
print ( len (student_set))
print ( type (student_set))
# set(序列)
# set(集合) 对list中的元素去重,并创建一个新的集合
id_list = [ "id1" , "id2" , "id3" , "id1" , "id2" ]
new_set = set (id_list)
print (id_list)
print (new_set)
# set(元组) 对突破了中的元素去重,并创建一个新的集合
id_tuple = ( "id1" , "id2" , "id3" , "id1" , "id2" )
new_set = set (id_tuple)
print (id_tuple)
print (new_set)
对于字符串,会打乱元素顺序,并对字符去重。
Copy string_set = set ( "hello" )
print (string_set)
# {'o', 'e', 'l', 'h'}
创建空集合
Copy # 创建空集合
none_set = set ()
print (none_set) # set()
# 注意,床架空字典是{}
none_dict = {}
print (none_dict) # {}
判断存在与否
Copy # in or not in
id_list = [ "id1" , "id2" , "id3" , "id1" , "id2" ]
new_set = set (id_list)
user_id = "id1"
if user_id in new_set :
print ( " {} 存在" . format (user_id))
elif user_id not in new_set :
print ( " {} 不存在" . format (user_id))
update添加序列,而add()只能添加一个元素
Copy # update(序列) 重复元素会去重
name_set = { "zhangsan" , "lisi" }
# 添加列表元素到集合
name_set . update ([ "悟空" , "八戒" ])
print (name_set)
# 添加元组元素到集合
name_set . update (( "悟空" , "八戒" ))
print (name_set)
# 添加多个序列元素到集合
name_set . update ([ "悟空" , "八戒" ],[ "沙僧" , "八戒" ])
print (name_set)
# 把一个集合并入另一个集合
name_set . update ({ "张飞" , "李逵" })
print (name_set)
# add()只能添加一个元素
name_set . add ( "如来佛" )
print (name_set)
三种删除操作
Copy # 三种删除操作
#remove(元素)
name_set = { "zhangsan" , "lisi" , "wangwu" }
name_set . remove ( "zhangsan" )
print (name_set)
# remove删除不存在的元素会报错
# name_set.remove("zhangsan")# KeyError: 'zhangsan'
# discard(元素)
name_set = { "zhangsan" , "lisi" , "wangwu" }
name_set . discard ( "zhangsan" )
print (name_set)
name_set . discard ( "zhangsan" )
# pop随机删除
name_set = { "zhangsan" , "lisi" , "wangwu" }
name_set . pop ()
print (name_set)
交集,并集,差集
Copy # 交集,并集,
# 交集
num_set1 = { 1 , 2 , 4 , 7 }
num_set2 = { 2 , 5 , 8 , 9 }
inter_set1 = num_set1 & num_set2
inter_set2 = num_set1 . intersection (num_set2)
print (inter_set1)
print (inter_set2)
# 并集
num_set1 = { 1 , 2 , 4 , 7 }
num_set2 = { 2 , 5 , 8 , 9 }
union_set1 = num_set1 | num_set2
union_set2 = num_set1 . union (num_set2)
print (union_set1)
print (union_set2)
# 差集
num_set1 = { 1 , 2 , 4 , 7 }
num_set2 = { 2 , 5 , 8 , 9 }
diff_set1 = num_set1 - num_set2
diff_set2 = num_set1 . difference (num_set2)
print (diff_set1)
print (diff_set2)
# 对称差集, 互差再并
num_set1 = { 1 , 2 , 4 , 7 }
num_set2 = { 2 , 5 , 8 , 9 }
sym_diff_set1 = num_set1 ^ num_set2
sym_diff_set2 = num_set1 . symmetric_difference (num_set2)
print (sym_diff_set1)
print (sym_diff_set2)
参考资料