如何在我的Python代码中修复“无效语法”错误?

问题描述 投票:-4回答:1

我正在编写测试目的。我正在尝试在我的Windows虚拟机和我的Kali Linux虚拟机之间建立连接。我为此目的编写了一个监听器,但它没有工作。

我的Python代码:

enter image description here

在Kali Linux上运行监听器的结果:

enter image description here

python
1个回答
1
投票

@Klaus D.是对的,你的__init__每侧都需要两个下划线,而不是1.还要确保你班级下的方法正确缩进。

#!/usr/bin/python

import socket

class Listener:
    def __init__(self, ip, port):
        listener = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        listener.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
        listener.bind((ip, port))
        listener.listen(0)
        print("Waiting for connections....")
        self.connection, address = listener.accept()
        print("Got a connection from " + str(address))

    def execute_remotely(self, command):
        self.connection.send(command)
        return self.connection.recv(1024)

    def run(self):
        while True:
            command = raw_input(">>")
            result = self.execute_remotely(command)
            print(result)

myListener = Listener("10.0.2.15", 8080)
myListener.run()
© www.soinside.com 2019 - 2024. All rights reserved.