天宫鹤

上一页 1 2 3 4 5 6 7 8 ··· 13 下一页

2024年8月4日

Python出现“OSError: cannot write mode CMYK as PNG”错误信息的解决办法

摘要: # 打开图片并转换为RGB模式 image = Image.open(_path).convert('RGB') #_path为图像全路径 阅读全文

posted @ 2024-08-04 18:35 GoGrid 阅读(84) 评论(0) 推荐(0) 编辑

2024年8月3日

Python使用win32com全文替换文档内容

摘要: # 全文替换文档内容 def update_replace_all(_old, _new): wdApp.Selection.Find.ClearFormatting() wdApp.Selection.Find.Replacement.ClearFormatting() wdApp.Selecti 阅读全文

posted @ 2024-08-03 08:50 GoGrid 阅读(39) 评论(0) 推荐(0) 编辑

2024年8月1日

Python之if __name__ ==' __main__ '语句

摘要: 每个程序都会有一个逻辑入口,if __name__='__main__'即表示当前Python程序的逻辑入口。Python本身并没有对此进行规定,使用if __name__=='__main__'只是一种编码习惯。 __name__是 Python 中的内置变量,用于表示当前模块的名字,而Pytho 阅读全文

posted @ 2024-08-01 08:50 GoGrid 阅读(13) 评论(0) 推荐(0) 编辑

2024年7月28日

Python去除UserWarning: Data Validation extension is not supported and will be removed warn(msg)警告信息

摘要: # 忽略UserWarning: Data Validation extension的警告(Excel读取时出现)warnings.simplefilter(action='ignore', category=UserWarning) 阅读全文

posted @ 2024-07-28 16:37 GoGrid 阅读(139) 评论(0) 推荐(0) 编辑

2024年7月22日

Python获取指定文件夹下的目标文件文件夹(倒数第二个文件夹)的全路径列表

摘要: # 获取指定文件夹下的目标文件文件夹(倒数第二个文件夹)的全路径列表 def get_destination_folder_list(_path, _pattern='1.*'): """ :param _path:指定文件夹 :param _pattern:文件匹配模式,默认.jpg 功能:返回指 阅读全文

posted @ 2024-07-22 07:53 GoGrid 阅读(23) 评论(0) 推荐(0) 编辑

2024年7月18日

Python按照图片尺寸(毫米mm)调整图片尺寸(像素pixel)

摘要: # 按照图片尺寸(毫米mm)调整图片尺寸(像素) def resize_image_by_mm(input_image_path, output_image_path, width_mm=35, height_mm=49): """ 输入参数: :param input_image_path:原图片 阅读全文

posted @ 2024-07-18 21:21 GoGrid 阅读(98) 评论(0) 推荐(0) 编辑

Python获取EXCEL实用行数

摘要: # 获取EXCEL实用行数 def get_excel_rows(_excel_path): """ 输入参数: :param _excel_path:Excel全路径 功能:获取Excel实际行数,即培训人员数量 """ if not _excel_path.exists(): print(f'{ 阅读全文

posted @ 2024-07-18 11:42 GoGrid 阅读(22) 评论(0) 推荐(0) 编辑

2024年7月17日

Python读Excel数据,创建Word文档上下文字典列表,元素为字典(新)

摘要: # 读Excel数据,创建Word文档上下文字典列表,元素为每个培训人员的上下文字典 def create_docx_context_dict_list(_excel_path): """ 输入参数: :param _excel_path:Excel全路径 功能:创建Word文档上下文字典列表,元素 阅读全文

posted @ 2024-07-17 22:05 GoGrid 阅读(5) 评论(0) 推荐(0) 编辑

Python使用指定数据、索引、列名创建DataFrame

摘要: data = [[109, 119, 98], [106, 99, 85], [108, 110, 104], [102, 99]] # 数据 name = ['King', 'Order', 'God', 'Dd'] # 索引 columns = ['语文', '数学', "英语"] # 列名 d 阅读全文

posted @ 2024-07-17 17:17 GoGrid 阅读(9) 评论(0) 推荐(0) 编辑

Python解决FutureWarning: Passing literal html to 'read_html' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object.

摘要: from io import StringIO try: resp = requests.get(url) # pd.set_option('future.no_silent_downcasting', True) # 不提示函数在未来版本中将被替代的警告 df = pd.read_html(Str 阅读全文

posted @ 2024-07-17 16:54 GoGrid 阅读(566) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 13 下一页

导航