我遇到这个问题,其中python说该模块不可调用。我尝试使用下面的方法从模块导入模块作为from module import *。所有这些都说模块不可调用。我做错了什么?
import socket
#creates socket
s = socket.socket()
port = 88
# binds socket to port
s.bind(('', port))
s.listen(5)
while True:
#establishes connection with client
c, addr = s.accept()
答案 0 :(得分:2)
我猜你已经创建了命名为socket.py的脚本。 因此导入尝试导入自己,因为名称冲突。