
python
guijiaqing
这个作者很懒,什么都没留下…
展开
-
Python去掉字符串中的空格方法总结
大脑的总结,很全面https://www.cnblogs.com/fandx/p/9311755.html Python中常见字符串去除空格的方法总结 1:strip()方法,去除字符串开头或者结尾的空格 >>> a = " a b c " >>> a.strip() 'a b c' 2:lstrip()方法,去除字符串开头的空格 >>>...原创 2020-04-17 13:25:31 · 447 阅读 · 0 评论 -
python接收TCP协议的Json格式消息,并保存.txt
#!/usr/bin/env python # -*- coding: utf-8 -*- import time import json import socket import time,datetime import os HOST='192.168.0.120' PORT=8850 BUFFER=9600 #定义socket通信类型 ipv4,tcp soc=socket.socke...原创 2020-04-08 09:18:54 · 1367 阅读 · 0 评论