Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我第一次使用 python 套接字。我正在制作一个蛇游戏,用于 LAN PC。Python 使用一段时间在客户端 - 服务器中连接和发送信息。 我需要知道多少信息,我可以同时发送,而不影响游戏的速度。我有一个包含 4000 条记录的数组,它们对应于游戏的坐标。我是否需要做一个算法来最小化传输?,如何?...建议,想法... 谢谢。
Python 中的套接字是从 BSD 接口定义的。您可以从套接字手册开始。服务器和客户端的制作方式与 C 类似。