摘要:
# 正则表达式的学习 import re # 拆分长字符串 poem = '窗前明月光,疑是地上霜。举头望明月,低头思故乡。' sentences_list = re.split(r'[,。, .]', poem) sentences_list = [sentence for sentence in 阅读全文
摘要:
import os print(os.path.dirname(r'C:\Users\AD\Desktop\temp1\大哥哥.wav')) # json模块有四个比较重要的函数,分别是: # # dump - 将Python对象按照JSON格式序列化到文件中 # dumps - 将Python对象 阅读全文