
python
Mosay_dhu
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python遍历文件夹中的文件
file_dir = 'MerchData/' filenames = [] for root, dirs,files in os.walk(file_dir): for file in files: print (os.path.join(root,file)) for name in dirs: print (os.path.join...原创 2018-06-05 19:26:28 · 1328 阅读 · 0 评论 -
资源整理
1.python--re(模糊匹配) https://www.cnblogs.com/Meanwey/p/9741334.html 2.Source code for sympy.geometry.line from sympy.geometry.line import Line, Segment https://docs.sympy.org/0.7.5/_modules/sympy...转载 2019-06-21 13:45:36 · 499 阅读 · 0 评论