If you cannot sure the method of a datatype, then you can use dir function to list all methods of this datatype

 

代码
>>> li
[]
>>> dir(li)
[
'__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__delsli
ce__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getit
em__
', '__getslice__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__',
'__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__r
educe__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__'
, '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__', 'a
ppend', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'
]
>>> d=[]
>>> dir(d)
[
'__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__delsli
ce__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getit
em__
', '__getslice__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__',
'__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__r
educe__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__'
, '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__', 'a
ppend', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'
]

Note:

     1)format: dir(variable), it is included by()

     2)the returned list contains the names of the methods as the datatype of variable.

相关文章:

  • 2022-01-24
  • 2022-12-23
  • 2022-12-23
  • 2021-11-04
  • 2022-01-19
  • 2021-06-25
  • 2021-07-27
猜你喜欢
  • 2021-08-17
  • 2021-07-06
  • 2022-12-23
  • 2021-10-28
  • 2021-12-21
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案