Python
A_Hou
Just Wanna To Be Better !
展开
-
Python3 输出字符串左对齐、右对齐、居中对齐
1.通过ljust(),center(),rjust()函数实现输出的字符串左对齐、居中、右对齐方法一:使用函数默认不带参数,则默认以空格填充(文字与空格总字符数等于输入的数字)#代码print("|","Ursula".ljust(20),"|") #左对齐print("|","Ursula".center(20),"|") #居中对齐print("|","Ursula".rjust(20),"|") #右对齐#运行结果| Ursula ...转载 2020-06-15 10:37:20 · 4706 阅读 · 0 评论 -
如何使用python-docx库设置表格单元格的边距(How to set cell margins of tables using python docx)
1.插入表格后,目前python-docx没有官方方法将单元格边距设置成自己想要的距离。2.下面代码可实现调整单元格边距from docx.table import _Celldef set_cell_margins(cell: _Cell, **kwargs): """ cell: actual cell instance you want to modify ...原创 2020-03-18 14:59:37 · 2207 阅读 · 2 评论 -
如何使用python-docx库设置表格单元格的边框(How to setup cell borders with python-docx)
1.在用python-docx库插入表格后,想要更改表格样式可以通过表格样式来更改,比如:设为无线框表格table_style = 'Normal Table'这种方法在网上一堆,便不再赘述。但这种方法很“死板”,只能选取docx库中的指定样式,做不到根据要求隐去表格的某条边框,要实现此功能,只能自己写。2.python-docx库官方目前没有设置单元格边框的函数方法,可以使用下列代...原创 2020-03-18 14:52:18 · 11379 阅读 · 6 评论 -
python 文件批量重命名
import osdef rename(): i = 0 path = r"./data_set" filelist = os.listdir(path) #该文件夹下所有文件 for files in filelist: #遍历文件 i = i + 1 Olddir = os.path.join(path, ...原创 2019-10-24 19:52:57 · 364 阅读 · 0 评论 -
正则表达式匹配图
收藏了很久的一张经典图,奈何没有原文链接了,侵删!原创 2019-08-13 19:49:19 · 855 阅读 · 0 评论