引言:
在Python开发过程中,遇到报错是家常便饭。而每一种报错都像是一个谜题,等待着开发者去解开。今天我们就来探讨一个特定的Python报错:TypeError: ‘ellipsis‘ object is not subscriptable。这个报错可能会让很多开发者感到…
socket 套接字
socket常见API
创建套接字:(TCP/UDP,客户端服务器)
int socket(int domain, int type, int protocol);绑定端口号:(TCP/UDP,服务器)
int listen(int sockfd, int …