美文网首页
Python魔术方法

Python魔术方法

作者: Tomtoms | 来源:发表于2019-11-07 23:00 被阅读0次

    Python魔术方法

    Python 魔术方法指南 — PyCoder’s Weelky CN
    Python的魔术方法是Python中那些定义的像xxxx的方法,Python中主要的魔术方法如下

    __str__(self)
    __repr__
    
    
    __getattr__
    __setattr__
    __delattr__
    __getattribute__
    
    __getitem__
    __setitem__
    __delitem__
    
    __iter__
    __contains__
    __concat__
    
    __pos__
    __neg__
    
    __index__
    __invert__
    __nonzero__
    
    __call__
    __init__
    __new__
    
    __enter__
    __exit__
    
    __lt__
    __gt__
    __eq__
    __ne__
    __cmp__
    

    学习/python

    相关文章

      网友评论

          本文标题:Python魔术方法

          本文链接:https://www.haomeiwen.com/subject/dcmbbctx.html