当我在 Subprocess 模块中使用 check_output 时,Python shell 出现以下输出错误:
AttributeError:“模块”对象没有属性“检查输出”
编码:
target = raw_input("IP: ")
port = subprocess.check_output(["python", "portscanner.py", target ])
我使用 Python 2.7。感谢您的解决方案!
当我在 Subprocess 模块中使用 check_output 时,Python shell 出现以下输出错误:
AttributeError:“模块”对象没有属性“检查输出”
编码:
target = raw_input("IP: ")
port = subprocess.check_output(["python", "portscanner.py", target ])
我使用 Python 2.7。感谢您的解决方案!