当前位置:
首页 > temp > python入门教程 >
-
Python中的可变对象与不可变对象
-
不可变类型
float
、int
、str
、tuple
、bool
、frozenset
、bytes
tuple自身不可变,但可能包含可变元素,如:([3, 4, 5], 'tuple')
-
可变类型
list
、dict
、set
、bytearray
、自定义类型
+=操作符
+=操作符对应__iadd__魔法方法
,对于不可变对象,a+=b
和a=a+b
等价,对于可变对象并不等价,dict
和set
不支持+=和+操作符。
l1 = l2 = [1, 2, 3] # 只有l1发生变化 # l1 = l1 + [4] # l1和l2都发生变化,输出[1, 2, 3, 4, 5] l1 += [4, 5] print(l1) print(l2)
浅拷贝 深拷贝
与赋值不同,拷贝(可能)会产生新的对象,可通过拷贝来避免不同对象间的相互影响。
在Python中,不可变对象,浅拷贝和深拷贝结果一样,都返回原对象:
import copy t1 = (1, 2, 3) t2 = copy.copy(t1) t3 = copy.deepcopy(t1) print(t1 is t2) # True print(t1 is t3) # True print(id(t1), id(t2), id(t3)) # 输出相同值
对于可变对象,则会产生新对象,只是若原对象中存在可变属性/字段,则浅拷贝产生的对象的属性/字段引用原对象的属性/字段,深拷贝产生的对象和原对象则完全独立:
l1 = [1, 2, 3] l2 = l1.copy() print(l1 is l2) # False l2[0] = 100 print(l1[0]) # 1
import copy class Id: def __init__(self, name): self.name = name class Person: def __init__(self, id: Id): self.id = id p1 = Person(Id("eason")) p2 = copy.copy(p1) print(p1 is p2) # False print(p1.id is p2.id) # True p2.id.name = "p2" print(p1.id.name) # p2 p3 = copy.deepcopy(p1) print(p1 is p3) # False print(p1.id is p3.id) # False print(p1.id.name is p3.id.name) # True,字符串不可变,这里name属性的地址一样 p3.id.name = "p3" print(p1.id.name) # 还是p2
Python中可使用以下几种方式进行浅拷贝:
-
使用copy模块的copy方法
-
可变类型切片
l1 = [1, 2, 3] l2 = l1[:] print(l1 is l2) # False
-
可变类型的copy方法
[].copy() {}.copy() set().copy()
-
调用list, set, dict方法
l1 = [1, 2, 3] l2 = list(l1) l2[0] = 100 print(l1[0]) # 1
-
列表、字典、集合推导式
class Person: def __init__(self, name): self.name = name l1 = [Person("l1")] l2 = [i for i in l1] print(l1 is l2) # False print(l1[0] is l2[0]) # True s1 = {Person("s1")} s2 = {i for i in s1} print(s1 is s2) # False ele1 = s1.pop() ele2 = s2.pop() print(ele1 is ele2) # True
出处:https://www.cnblogs.com/Cwj-XFH/p/17308499.html
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
关于JS定时器的整理
JS中使用Promise.all控制所有的异步请求都完
js中字符串的方法
import-local执行流程与node模块路径解析流程
检测数据类型的四种方法
js中数组的方法,32种方法
前端操作方法
数据类型
window.localStorage.setItem 和 localStorage.setIte
如何完美解决前端数字计算精度丢失与数