python

时间:2019-10-01 02:01:35

标签: python

采用以下字符串以及字符串的属性和方法:

>>> s= ''
>>> dir(s)
[
    '__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__getslice__', '__gt__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 
    '_formatter_field_name_split', '_formatter_parser', 
    'capitalize', 'center', 'count', 'decode', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'
]

还有一些琐碎的事情:

>>> class X: pass
>>> x=X()
>>> dir(x)
['__doc__', '__module__']

是否有规则规定变量何时应有前导下划线_var,而变量应仅有变量var以及何时应有前导和尾随两个下划线,__var__。这是约定,还是变量/方法/属性的“作用”与下划线有什么不同?

0 个答案:

没有答案