python写的ftp客户端,请问为什么会出现这样的错误?
回答:
这个啊,我来示范一个给你看看
>>> import requests >>> requests("123")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'module' object is not callable
>>>
>>> from os import path
>>> path()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'module' object is not callable
看明白了吧,我导入的是requests、path都是模块,我当方法用了,就报这个错了,我应该这样用才对
>>> import requests>>> requests.get("http://baidu.com")
<Response [200]>
调用模块中的方法,你看看你的是不是这样。
以上是 python写的ftp客户端,请问为什么会出现这样的错误? 的全部内容, 来源链接: utcz.com/p/937897.html