Python快速精通2 - 序列,字典代码部分

Python3基础2:序列(列表,元组)与字典

(一)序列通用方法

序列封包

本质上: 变量 < - - 元组
看下面例子:

companys = '华为','阿里','腾讯','智能天下'
print(type(companys))
print(companys)

('华为', '阿里', '腾讯', '智能天下')

序列解包

本质上: 多个变量 < - - 序列 (列表,元组,字符串都属于序列,一般是将列表和元组内的元组直接赋值给变量)
将一个序列内的元素赋值给多个变量

hw,ali,tecent,zntx= ('华为','阿里','腾讯','智能天下')
print(hw,ali)
华为 阿里

同时使用序列封包与解包

name,age,job,email = 'xiaobai',28,'engineer','[email protected]'
print(name,job)
xiaobai engineer

Python这样做只是为了炫吗? 例如我们要完成一个简单的变量交换

x,y = 100,200
print('交换位置前: x = %d, y = %d' % (x,y))
x,y = y,x
print('交换位置后: x = %d, y = %d' % (x,y))
交换位置前: x = 100, y = 200
交换位置后: x = 200, y = 100

需求: 在数据库表中取出一条记录有N个字段,如果仅仅对前面某几个字段感兴趣,那么序列解包是不是没有用处了?

key,name,age,job,*other = '0001','Jark',28,'enginer','BeijingChaoyang','[email protected]'
print(name)
print(type(other))
#还可以这样
*other,email = '0001','Jark',28,'enginer','BeijingChaoyang','[email protected]'
print(email)
#还可以这样
id,*middle,email = '0001','Jark',28,'enginer','BeijingChaoyang','[email protected]'
print(middle)
Jark

[email protected]
['Jark', 28, 'enginer', 'BeijingChaoyang']

(二)使用列表

2.1 创建列表

# 方式1: 中括号
companys = ['华为','阿里巴巴','腾讯','智能天下']
print('companys:',companys)


# 方式2: list函数,将其它类型转换成为列表
# 将range区间对象转换为list
numbers = list(range(1,10))
print('numbers: %s' % numbers)
print('numbers的实例ID: {0}'.format(id(numbers))) #和后面切片得到的list对比ID
# 将字符串转换为list(虽然没什么意义,就是体验list函数的作用)
strs = list('python')
print('strs: %s' % strs)
# 将tuple转换为list
tpl = ('Java','Python','JavaScript','Scala','Go','R')
tpl_list = list(tpl)
print('tpl_list: %s' % tpl_list)


# 注意,对一个列表进行切片,也会产生一个新列表
sub_numbers = numbers[2:6]
#和前面切片得到的list对比ID
print('sub_numbers的实例ID: {id}'.format(id = id(sub_numbers)))

#注: 上面使用了多种字符串的格式化输出方式,当做对三种字符串格式化方式进行复习
companys: ['华为', '阿里巴巴', '腾讯', '智能天下']
numbers: [1, 2, 3, 4, 5, 6, 7, 8, 9]
numbers的实例ID: 2014884805448
strs: ['p', 'y', 't', 'h', 'o', 'n']
tpl_list: ['Java', 'Python', 'JavaScript', 'Scala', 'Go', 'R']
sub_numbers的实例ID: 2014884873096

2.2 添加元素

方式1, append()函数,追加一个元素到列表最后面

bigCompany = ['华为','谷歌']
facebook = 'Facebook'
bigCompany.append(facebook)
print('bigCompany: ',bigCompany)

# 注意: 上面是一个简单数据类型,如果是一个集合数据结构,会出现什么情况呢?
bat = ['百度','阿里','腾讯']
bigCompany.append(bat)
# 这里会发现,bat这个列表会作为一个元素,添加到 bigCompany里面,如果这不是你期望的,请看下一个extends()函数
print('bigCompany: ',bigCompany)   
bigCompany:  ['华为', '谷歌', 'Facebook']
bigCompany:  ['华为', '谷歌', 'Facebook', ['百度', '阿里', '腾讯']]

方式2, extend()函数,将集合元素拆开追加到列表最后面

bigCompany = ['华为','谷歌']

bat = ['百度','阿里','腾讯']
bigCompany.extend(bat)
# 这下发现,使用extend()函数,会将集合中的每个元素作为单独的元素插入列表
print('bigCompany: ',bigCompany)   

# 如果使用extend()函数,追加的是一个字符串呢,看结果发现,同样被拆解了,这就是extend与append的不同
facebook = 'Facebook'
bigCompany.extend(facebook)
print('bigCompany: ',bigCompany)

bigCompany:  ['华为', '谷歌', '百度', '阿里', '腾讯']
bigCompany:  ['华为', '谷歌', '百度', '阿里', '腾讯', 'F', 'a', 'c', 'e', 'b', 'o', 'o', 'k']

方式3, insert()函数,插入元素到列表中

bigCompany = ['华为','谷歌','百度','阿里','腾讯']
zntx = '智能天下'

# 把新成员插入到指定的索引位置上,例如插入到索引位置1上
bigCompany.insert(1,zntx)
print('bigCompany: ',bigCompany)

# 如果插入的是一个集合元素呢
bat = ['百度','阿里','腾讯']
bigCompany.insert(2,bat)
# 同append一样是将集合作为一个整体放进去了
print('bigCompany',bigCompany)  

bigCompany:  ['华为', '智能天下', '谷歌', '百度', '阿里', '腾讯']
bigCompany ['华为', '智能天下', ['百度', '阿里', '腾讯'], '谷歌', '百度', '阿里', '腾讯']

2.3 删除元素

方式1: del语句,根据索引删除元素 (注意是语句,不是函数,还可以删掉一个变量)

bigCompany = ['华为','谷歌','百度','阿里','腾讯']
# 删掉一个元素: 例如删掉索引位置为2的元素:'百度'
del bigCompany[2]
print('bigCompany',bigCompany)

numbers = list(range(1,10))
print('numbers: ',numbers)
# 删掉一个范围的元素: 例如删掉索引位置[0:5)这个区间的元素,是不包括索引位置5上的元素的
del numbers[0:5]
print('numbers: ',numbers)

del numbers
# print('numbers:',numbers)   #执行会出现NameError
bigCompany ['华为', '谷歌', '阿里', '腾讯']
numbers:  [1, 2, 3, 4, 5, 6, 7, 8, 9]
numbers:  [6, 7, 8, 9]

方式2: remove()方法,根据元素值删除元素(在list中从头到尾找到指定元素,执行删除)

bigCompany = ['华为','谷歌','百度','阿里','腾讯','百度']
bigCompany.remove('百度')
print('bigCompany:',bigCompany)
bigCompany: ['华为', '谷歌', '阿里', '腾讯', '百度']

方式3: clear()方法,清空列表内的所有元素

countries = ['日本','越南','土耳其','印度']
print('list_lenth:{len},\t countries:{countries}'.format(len = len(countries),countries = countries))
countries.clear()
print('list_lenth:{1},\t countries:{0}'.format(countries,len(countries)))
list_lenth:4,    countries:['日本', '越南', '土耳其', '印度']
list_lenth:0,    countries:[]

2.4 修改元素

列表的每一个元素相当于一个变量,直接使用索引对指定元素赋值

bigCompany = ['华为','谷歌','百度','阿里','腾讯','百度']

#对第4索引位置的元素修改
bigCompany[4] = '蚂蚁金服'
print(bigCompany)

#对最后一个元素修改值
bigCompany[-1]='字节跳动'
print(bigCompany)

#对超出list位置上的元素修改试试
# bigCompany[6]='Microsoft' # IndexError: list assignment index out of range
['华为', '谷歌', '百度', '阿里', '蚂蚁金服', '百度']
['华为', '谷歌', '百度', '阿里', '蚂蚁金服', '字节跳动']
bigCompany = ['华为','谷歌','百度','百度','阿里','腾讯']
newCompany = ['蚂蚁金服','字节跳动']

#对索引范围为[2:4]的值进行修改
bigCompany[2:4] = newCompany
print(bigCompany)

#对索引范围为[2:结束]的值进行修改
bigCompany = ['华为','谷歌','百度','百度','阿里','腾讯']
bigCompany[2:] = newCompany
print(bigCompany)

# 既然这样,那么对切片范围[2:3]位置进行修改试试
bigCompany = ['华为','谷歌','百度','百度','阿里','腾讯']
bigCompany[2:3] = newCompany
print(bigCompany)

#那么这样是否可以实现任意位置的插入一个范围的值呢?
bigCompany = ['华为','谷歌','百度','百度','阿里','腾讯']
bigCompany[2:2] = newCompany
print(bigCompany)
['华为', '谷歌', '蚂蚁金服', '字节跳动', '阿里', '腾讯']
['华为', '谷歌', '蚂蚁金服', '字节跳动']
['华为', '谷歌', '蚂蚁金服', '字节跳动', '百度', '阿里', '腾讯']
['华为', '谷歌', '蚂蚁金服', '字节跳动', '百度', '百度', '阿里', '腾讯']

2.5 其他列表方法

下面的明天补上

(三) 元组

(四)字典

3.1 创建字典

3.2 添加元素

3.3 删除元素

3.4 修改元素

3.5 其他字典方法

你可能感兴趣的:(Python快速精通2 - 序列,字典代码部分)