Python 基本函数
文章平均质量分 70
Xiaofei@IDO
这个作者很懒,什么都没留下…
展开
-
基于python环境的pip安装事项
基于python环境的Pip的使用原创 2022-12-07 10:09:45 · 597 阅读 · 0 评论 -
【Python】Plotly 绘制甘特图
1. 简述甘特图较为常用的是用于任务进度的展示。2. 函数plotly有一个专门绘制甘特图的模块figure_factory.create_gantt(),可以很方便地绘制甘特图。plotly.figure_factory.create_gantt(df, colors=None, index_col=None, show_colorbar=False, reverse_colors=False, title=‘Gantt Chart’, bar_width=0.2, showgrid_x=Fal原创 2021-04-12 10:51:19 · 5599 阅读 · 2 评论 -
Python 正则表达式函数(二)
Python 正则表达式函数(二)背景正则表达式对象方法或属性1. Pattern.search(string[, pos[, endpos]])背景基于 re.compile 编译的正则表达式对象 (Parttern),可以调用多种属性方法。正则表达式对象方法或属性1. Pattern.search(string[, pos[, endpos]])从头开始搜索 string ,并返回...原创 2020-03-29 21:42:13 · 556 阅读 · 0 评论 -
Python 正则表达式函数(一)
正则表达式函数模块函数或方法1. re.compile模块首先,导入模块import re函数或方法1. re.compile函数原型:re.compile(pattern, flags=0)编译正则表达式字符串为正则表达式对象,被用于 match() 和 search() 函数flags 用于指定正则表达式的模式,各个模式之间可以使用 OR 或 | 串联prog = re...原创 2020-03-24 22:37:25 · 376 阅读 · 0 评论 -
Python 目录和文件操作
Python 目录和文件操作2os.path.abspath(path)os.path.commonpath(paths)os.path.commonprefix(list)os.path.dirname(path)os.path.exists(path)os.path.getsize(path)os.path.isabs(path)os.path.isfile(path)os.path.isdi...原创 2020-03-22 11:02:31 · 436 阅读 · 0 评论 -
Python文件与目录操作详解
Python 文件与目录操作1. os.access2. os.chdir3. os.getcwd4. os.link5. os.listdir6. os.mkdir7. os.makedirs8. os.readlink9. os.remove10. os.rmdir11. os.removedirs12. os.rename13. os.renames14. os.symlimk1. os....原创 2020-03-21 22:32:41 · 230 阅读 · 0 评论