python复习

Posted hq82

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python复习相关的知识,希望对你有一定的参考价值。

身份运算符:is , is not
成员运算符:in , not in
1.深浅拷贝
s = [‘nihao ‘, 2]
s1 = s.copy()
print(s1)
print(s,s1)
<1>浅拷贝(只会copy第一层次)
b=a[:] #b=a.copy()
-------------------------------
s = [[1, 2], ‘nihao‘, 2]
d = s
print(id(s))
print(id(d))
#32285040
#32285040
-------------------------------
s = [[1, 2], ‘nihao‘, 2]
d = s.copy()
print(id(s))
print(id(d))
#6726000
#6797272
<2>s深拷贝(克隆一份)
























以上是关于python复习的主要内容,如果未能解决你的问题,请参考以下文章

Python学习————python基础复习

复习python

Python(83)_复习python

python:基础复习

Python复习——复习4次课(12月1日)

Python复习