问题,所以我现在需要在一个数据包中发送 \n,但 python 将其视为 EOL。我如何告诉它将 \n 视为原始文本和数据包的一部分?
logcom = "LOGON\n Protocol-Version: 2.0\n App-type: Windows x86\n Operator: PC_CLIENT\n name: " + pal_user + "\n capabilities: 4\n"
我需要在一个数据包中发送所有这些,但是当数据包有多行时它会将 \n 视为 EOL,但当它只是 LOGON 时则不会\n
socket.sendall("'LOGON\n
^
SyntaxError: EOL while scanning string literal
错误^