摘要:
import re s = 'hello123world' result = re.search(r'\d{3}',s).group() print(result) re模块有3种匹配方式 match 从头匹配 search 搜索 findall 查找所有,返回列表 re.match(pattern 阅读全文
摘要:
参考https://www.cnblogs.com/-wenli/p/11261109.html pip install pyserial from serial import Serial(from serial.serialwin32 import Serial) 自动打开串口 ser = Se 阅读全文