真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在python中利用多線(xiàn)程編寫(xiě)一個(gè)tcp客戶(hù)端程序-創(chuàng)新互聯(lián)

這篇文章給大家介紹怎么在python中利用多線(xiàn)程編寫(xiě)一個(gè)tcp客戶(hù)端程序,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

創(chuàng)新互聯(lián)是一家專(zhuān)注于成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、成都外貿(mào)網(wǎng)站建設(shè)公司與策劃設(shè)計(jì),二七網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專(zhuān)注于網(wǎng)站建設(shè)10余年,網(wǎng)設(shè)計(jì)領(lǐng)域的專(zhuān)業(yè)建站公司;建站業(yè)務(wù)涵蓋:二七等地區(qū)。二七做網(wǎng)站價(jià)格咨詢(xún):18980820575

代碼如下:

from socket import *
import threading
tcp_socket = socket(AF_INET, SOCK_STREAM)
tcp_socket.connect(('192.168.1.102', 8080))
true = True


def rece_msg(tcp_socket):
 global true
 while true:
  recv_msg = tcp_socket.recv(1024).decode("utf8")
  if recv_msg == "exit":
   true = False
  print('接收到的信息為:%s' % recv_msg)


def send_msg(tcp_socket):
 global true
 while true:
  send_msg = input('請(qǐng)輸入要發(fā)送的內(nèi)容')
  tcp_socket.send(send_msg.encode('utf-8'))
  if send_msg == "exit":
   true = False


def main():
 while True:
  print('*'*50)
  print('1 發(fā)送消息\n2 接收消息')
  option = int(input('請(qǐng)選擇操作內(nèi)容'))
  print('*'*50)
  if option == 1:
   threading.Thread(target=send_msg, args=(tcp_socket,)).start()
  elif option == 2:
   threading.Thread(target=rece_msg, args=(tcp_socket,)).start()
  else:
   print('輸入有誤')
  break


if __name__ == '__main__':
 main()

該代碼只能實(shí)現(xiàn)要么一直發(fā)送,要么一直接收

運(yùn)行如圖

發(fā)送數(shù)據(jù)時(shí)截圖

 怎么在python中利用多線(xiàn)程編寫(xiě)一個(gè)tcp客戶(hù)端程序

怎么在python中利用多線(xiàn)程編寫(xiě)一個(gè)tcp客戶(hù)端程序

接收數(shù)據(jù)時(shí)截圖

 怎么在python中利用多線(xiàn)程編寫(xiě)一個(gè)tcp客戶(hù)端程序

怎么在python中利用多線(xiàn)程編寫(xiě)一個(gè)tcp客戶(hù)端程序

為解決只能單方發(fā)送和接收問(wèn)題,現(xiàn)將代碼修改如下

from socket import *
import threading
tcp_socket = socket(AF_INET, SOCK_STREAM)
tcp_socket.connect(('192.168.1.102', 8080))
true = True


def rece_msg(tcp_socket):
 global true
 while true:
  recv_msg = tcp_socket.recv(1024).decode("utf8")
  if recv_msg == "exit":
   true = False
  print('接收到的信息為:%s\n' % recv_msg)


def send_msg(tcp_socket):
 global true
 while true:
  send_msg = input('請(qǐng)輸入要發(fā)送的內(nèi)容\n')
  tcp_socket.send(send_msg.encode('utf-8'))
  if send_msg == "exit":
   true = False


threading.Thread(target=send_msg, args=(tcp_socket,)).start()
threading.Thread(target=rece_msg, args=(tcp_socket,)).start()

運(yùn)行結(jié)果

怎么在python中利用多線(xiàn)程編寫(xiě)一個(gè)tcp客戶(hù)端程序

關(guān)于怎么在python中利用多線(xiàn)程編寫(xiě)一個(gè)tcp客戶(hù)端程序就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。


分享文章:怎么在python中利用多線(xiàn)程編寫(xiě)一個(gè)tcp客戶(hù)端程序-創(chuàng)新互聯(lián)
分享URL:http://weahome.cn/article/dhjspp.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部