空白を含むバイトの送信に問題があります python irc bot
呼び出し時に特定のコマンドに応答できるPython(3.9.2)でデフォルトのircボットを作成しようとしています。たとえば、応答にスペースが含まれている場合、ボットは最初の単語のみを表示します。 me > @hello bot > hi me > @how is the weather? bot > the 言わなければならなかったが、the weather seems nice today これはコードです import sys import time import socket import string server_ad...