还没有用python编程太多,我对套接字和连接的类型感到困惑。到目前为止,我已经掌握了。
<div class="container">
<div class="son">text</div>
<div class="son">text</div>
<div class="son">text</div>
</div>
.container{
display:flex;
flex-direction:row;
justify-content: center;
align-items:center;
}
.son{
width:100px;
background:#dcdcdc;
margin:10px;
transition: all 0.5s;
}
.son:active{
width:200px;
background:yellow;
transition: all 0.5s;
}
.son:focus{
width:200px;
background:yellow;
transition: all 0.5s;
}
我的问题是“ socket.accept套接字也返回连接吗?我可以将它们添加到与其产生的套接字相同的列表中吗?”
答案 0 :(得分:0)
...是socket.accept套接字返回的连接
来自the documentation of accept:
...返回值是一对(conn,地址),其中 conn是可用于在连接上发送和接收数据的新套接字对象 ...
换句话说,它也是一个套接字。
我可以将它们添加到与其从...生成的套接字相同的列表中吗?
您的问题中没有任何迹象表明您使用此列表的目的。因此,尽管您可以将其添加到列表中,但尚不清楚在其余代码的上下文中是否有意义(未显示代码,您将在此处使用此列表)。