argparse 是python自带的命令行参数解析包,可以用来方便地读取命令行参数。
说明:https://blog.csdn.net/yy_diego/article/details/82851661
os文件目录方法:os.path.exists()
https://www.runoob.com/python/python-os-path.html
分割后返回元素为string类型的list[ ]
https://blog.csdn.net/weixin_29100399/article/details/112901391
检查字符串是否以某个值开头
https://www.w3school.com.cn/python/ref_string_startswith.asp
https://www.w3school.com.cn/python/ref_string_format.asp
strip() 方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。
注意:该方法只能删除开头或是结尾的字符,不能删除中间部分的字符。
https://www.runoob.com/python/att-string-strip.html
r’ ’ 即raw,去除转义
https://blog.csdn.net/gymaisyl/article/details/85109627
string.replace(oldvalue, newvalue, count)
https://www.w3school.com.cn/python/ref_string_replace.asp
贪婪模式通配符
https://blog.csdn.net/weixin_39833509/article/details/107207227
16进制string转化为int
https://blog.csdn.net/qq_38228254/article/details/93844904
http://c.biancheng.net/view/2544.html
https://mp.weixin.qq.com/s?__biz=MjM5MDA2MTI1MA==&mid=2649120968&idx=2&sn=440a156940f9e487ead5f5c679d957bc&chksm=be584765892fce735ff4137ebd8aa53e7d2f3723b2c9cbbbf63fdcdf20ed7522d29fe5a74827&scene=27
https://blog.csdn.net/liu_xzhen/article/details/115401341
https://blog.csdn.net/weixin_39544333/article/details/110347597
https://zhuanlan.zhihu.com/p/595778735
https://www.zizhi888.cn/python/29533.html