socket_循环发送消息
生活随笔
收集整理的這篇文章主要介紹了
socket_循环发送消息
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
import socket
class SC(object):
def f(self):
udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
host = ('192.168.7.11', 8080)
while True:
input_word = input('請輸入要發送的內容:')
input_word = input_word.encode()
udp_socket.sendto(input_word, host)
udp_socket.close()
if __name__ == '__main__':
sc = SC()
sc.f()
class SC(object):
def f(self):
udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
host = ('192.168.7.11', 8080)
while True:
input_word = input('請輸入要發送的內容:')
input_word = input_word.encode()
udp_socket.sendto(input_word, host)
udp_socket.close()
if __name__ == '__main__':
sc = SC()
sc.f()
轉載于:https://www.cnblogs.com/victorstudy/p/11224272.html
總結
以上是生活随笔為你收集整理的socket_循环发送消息的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: IOS文本框readonly时焦点事件
- 下一篇: 借助URLOS快速安装python3网站