1、python 套接字
服務端與客戶端不能直接傳送列表,元組,字典。需要字串化repr(data)。
python中 將字串和字典的相互轉換
import json#json到字典轉化:
dictinfo = json.loads(json_str) # 輸出dict型別
字典到json轉化:#這種型別在套接字中測試能夠用來傳輸資料jsoninfo = json.dumps(dict) # 輸出str型別
python中list和字串型別的相互轉換
1.字串轉換成list
a = 'hello world!'2.list轉換成字串a_list = list(a)
//['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '!']
a_list = ['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '!']其中a_list為list,a為字串a = ''.join(a_list) //'hello horld!'
此外,引號中是字元之間的分割符,如『,』,'\t'等等
python的簡單使用
s1 lenovo s2 qf s3 hello lenovo s4 hello world s5 hello shark s6 hello world 1.轉義符testimony this shirt doesn t fit me words hello nshark print words 2...
Python的簡單udp使用
udp介紹 udp 是一種無連線的傳輸層協議,提供面向事務的簡單不可靠資訊傳送服務。udp協議全稱是使用者資料報協議,在網路中它與tcp協議一樣用於處理資料報,是一種無連線的協議。udp原理圖 3 udp聊天器 實現udp的聊天器 1.獲取鍵盤資料,並將起傳送給對方 2.接收資料並顯示 3.並且功能...
python的jieba簡單使用
函式 含義jieba.cut string 精確模式,返回乙個可迭代的資料型別 jieba.cut string,cut all true 全模式,輸出文字string中的所有可能的單詞 jieba.cut for search string 搜尋引擎模式,適合搜尋引擎建立索引的分詞結果 jieba...