0
在蟒蛇(IDLE)本身,我知道如果我型dir(list)
,我拿到名單的屬性列表如下所示:如何查看cgi腳本中的dir(list)或dir(str)? (蟒蛇3)
>>> 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
建議?
我該在哪裏輸入?在我的cgi-bin目錄中? –
@ user1631819不,與您的終端。如果你想使用絕對路徑,只需編寫'chmod + x/Library/Frameworks/Python.framework/Versions/3.0/lib/python3.0/http/server.py'。 –
我收到了以下消息:'chmod:無法更改/Library/Frameworks/Python.framework/Versions/3.0/lib/python3.0/http/server.py上的文件模式:不允許操作' –