如何看待cgi脚本中的dir(list)或dir(str)?(python 3)

如何看待cgi脚本中的dir(list)或dir(str)?(python 3),python,python-3.x,dir,Python,Python 3.x,Dir,在python(IDLE)本身中,我知道如果我键入dir(list),就会得到list的属性列表,如下所示: >>> dir(list) ['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__gt__', '__hash__',

在python(IDLE)本身中,我知道如果我键入
dir(list)
,就会得到list的属性列表,如下所示:

>>> dir(list)
['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']
但是,我的问题是,如何在.py文件中实现这一点?如果我键入
print(dir(list))
,我的本地主机会出现以下错误

Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.0/lib/python3.0/http/server.py", line 1031, in run_cgi
os.execve(scriptfile, args, os.environ)
OSError: [Errno 13] Permission denied

建议

您的脚本似乎没有执行权限。请尝试使用
chmod+x server.py
,然后再次运行脚本。

在哪里输入?在我的cgi-bin目录中?@user163819否,使用您的终端。如果要使用绝对路径,只需编写
chmod+x/Library/Frameworks/Python.framework/Versions/3.0/lib/python3.0/http/server.py
。我收到了以下消息:
chmod:cannotable change file mode on/lib/python3.0/http/server.py:Operation not allowed