python占位符%s,%d,%r,%f
Posted 休耕
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python占位符%s,%d,%r,%f相关的知识,希望对你有一定的参考价值。
conn, client_addr = phone.accept()
print(conn)
print(client_addr)
print(‘got a new connection from %s‘ % (client_addr, ))
"""
<socket.socket fd=4, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=(‘127.0.0.1‘, 8080), raddr=(‘127.0.0.1‘, 55925)>
(‘127.0.0.1‘, 65197)
got a new connection from (‘127.0.0.1‘, 65197)
"""
以上是关于python占位符%s,%d,%r,%f的主要内容,如果未能解决你的问题,请参考以下文章