2020年5月28日

conda 安装第三方库

摘要: 一般conda install +库名就可以了,如果不行的话,用conda install -c conda-forge + 库名 阅读全文

posted @ 2020-05-28 15:02 Learning_logs 阅读(3247) 评论(0) 推荐(0)

Python 正则表达式 捕获组和非捕获组

摘要: 参考链接:https://www.cnblogs.com/kevin-yuan/archive/2012/11/11/2765340.html 我希望的匹配结果是这样的 >>> d 'a1a2a3a4a5a6' >>> re.findall(r'(?:\w\d){5}',d) ['a1a2a3a4a 阅读全文

posted @ 2020-05-28 11:32 Learning_logs 阅读(2320) 评论(0) 推荐(0)

导航