- Python : 3.7.3
- OS : Ubuntu 18.04.2 LTS
- IDE : pycharm-community-2019.1.3
- Conda : 4.7.5
- typesetting : Markdown
""" @Author : 行初心 @Date : 2019/7/7 @Blog : www.cnblogs.com/xingchuxin @Gitee : gitee.com/zhichengjiu """ def main(): # a与b的内容和地址都有差异 a = [1, 2] b = [1] print(id(a), a) print(id(b), b) print() print("b.append(2)") b.append(2) # a与b的内容相同,地址有差异 print(id(a), a) print(id(b), b) print() # 内存地址相同吗? # is 比较的是两个对象的id值是否相等 print(a is b) print(id(a) == id(b)) # 内容相同吗? print(a == b) print(a.__eq__(b)) if __name__ == '__main__': main()
/home/coder/anaconda3/envs/py37/bin/python /home/coder/PycharmProjects/Base/demo.py 140337952333704 [1, 2] 140337952333768 [1] b.append(2) 140337952333704 [1, 2] 140337952333768 [1, 2] False False True True Process finished with exit code 0
def __eq__(self, *args, **kwargs): # real signature unknown """ Return self==value. """ pass def id(*args, **kwargs): # real signature unknown """ Return the identity of an object. This is guaranteed to be unique among simultaneously existing objects. (CPython uses the object's memory address.) """ pass
https://www.jb51.net/article/131559.htmhtml
https://www.cnblogs.com/lilz/p/9410319.html#_label2python
https://www.cnblogs.com/wangkun122/p/9082088.htmlgit
Python具备开源、跨平台、解释型、交互式等特性,值得学习。
Python的设计哲学:优雅,明确,简单。提倡用一种方法,最好是只有一种方法来作一件事。
代码的书写要遵照规范,这样有助于沟通和理解。
每种语言都有独特的思想,初学者须要转变思惟、踏实践行、坚持积累。bash