摘要:
1.将xml转为json 使用了xmltodict,在将xml转为json前提下首先需要: pip install xmltojson 然后再将xml转为json(自己在使用过程中的缺陷是会将xml中的数字也转为了字符串,带了引号,而我这边恰好不需要,只好自己又做了一遍转换,不过这已经很大程度上减少 阅读全文
摘要:
这里我用的是终端传值的方式,比如:python xxx.py "i am your friends" "am" import re import sys arr = [] sentence = str(sys.argv[1]) word = str(sys.argv[2]) rr = re.comp 阅读全文