内置函数dir

Posted python学到老

tags:

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

内置函数dir

li=[]
print(dir(li))》》》

[‘__add__‘, ‘__class__‘, ‘__contains__‘, ‘__delattr__‘, ‘__delitem__‘, ‘__dir__‘, ‘__doc__‘, ‘__eq__‘, ‘__format__‘, ‘__ge__‘, ‘__getattribute__‘, ‘__getitem__‘, ‘__gt__‘, ‘__hash__‘, ‘__iadd__‘, ‘__imul__‘, ‘__init__‘, ‘__init_subclass__‘, ‘__iter__‘, ‘__le__‘, ‘__len__‘, ‘__lt__‘, ‘__mul__‘, ‘__ne__‘, ‘__new__‘, ‘__reduce__‘, ‘__reduce_ex__‘, ‘__repr__‘, ‘__reversed__‘, ‘__rmul__‘, ‘__setattr__‘, ‘__setitem__‘, ‘__sizeof__‘, ‘__str__‘, ‘__subclasshook__‘, ‘append‘, ‘clear‘, ‘copy‘, ‘count‘, ‘extend‘, ‘index‘, ‘insert‘, ‘pop‘, ‘remove‘, ‘reverse‘, ‘sort‘]

以上是关于内置函数dir的主要内容,如果未能解决你的问题,请参考以下文章

python内置函数3-dir()

python学习笔记011——内置函数dir()

Python基础知识内置函数dir的使用方法

学习笔记———Python内置函数dir()

python 内置函数dir作用及使用

[查看内置函数帮助]