python 美化输出 错误 警告等信息_Python忽略warning警告错误实现方法

导读热词对python这个高级语言感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!

python开发中经常遇到报错的情况,但是warning通常并不影响程序的运行,而且有时特别讨厌,下面我们来说下如何忽略warning错误。

在说忽略warning之前,我们先来说下如何主动产生warning错误,这里用到warnings模块,看如下代码:

# @param Python忽略warning警告错误

# @author 编程之家 jb51.cc|www.jb51.cc

import warnings

def fxn():

warnings.warn("deprecated",DeprecationWarning)

with warnings.catch_warnings():

warnings.simplefilter("ignore")

fxn()

# End www.jb51.cc

这样就产生了warning错误

那么如何来控制警告错误的输出呢?很简单

# @param Python忽略warning警告错误

# @author 编程之家 jb51.cc|www.jb51.cc

import warnings

warnings.filterwarnings("ignore")

# End www.jb51.cc

这样就忽略了警告错误的输出。很简单吧~~

又有人要问如何忽略命令行下警告错误的输出呢?也非常简单:

python -W ignore yourscript.py

# End www.jb51.cc

这样就OK了

相关文章

总结

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。

如您喜欢交流学习经验,点击链接加入交流1群:1065694478(已满)交流2群:163560250

Python 3.14.0 (tags/v3.14.0:ebf955d, Oct 7 2025, 10:15:03) [MSC v.1944 64 bit (AMD64)] on win32 Enter "help" below or click "Help" above for more information. ===================== RESTART: D:/Users/lenovo/Desktop/2.py ==================== ✅ 成功加载中文字体: SimHei ✅ 正在读取文件:D:\Users\lenovo\Desktop\恒瑞10年数据.xlsx 📊 原始数据共 87 行,字段如下: ['名称', '证券代码', '证券简称', '开发支出', '资产总计', '研发费用', '研发费用率', '营业净利率'] ✅ 清洗后最终数据(10年): Year 研发费用 研发费用率 营业净利率 2016 2.922592e+09 0.001623 0.002198 2017 3.207977e+09 0.001638 0.002371 2018 3.151130e+09 0.001700 0.002450 2019 3.215737e+09 0.001929 0.002504 2020 2.445089e+09 0.001894 0.002336 2021 2.342023e+09 0.001741 0.002438 2022 1.734576e+09 0.001635 0.002441 2023 2.652772e+09 0.001863 0.002404 2024 2.328697e+09 0.001531 0.002416 2025 3.442789e+09 0.001690 0.002448 📈 AI提及次数模拟结果: 2016年: 4.0次 2017年: 5.0次 2018年: 13.0次 2019年: 16.0次 2020年: 20.0次 2021年: 32.0次 2022年: 61.0次 2023年: 89.0次 2024年: 117.0次 2025年: 174.0次 🔍 统计分析结果: 【研发费用】 相关系数 r = 0.0006, p = 0.998739 回归方程: 研发费用 = 2744051164.0 + 5404.412 × AI_Mentions 决定系数 R² = 0.0000 【营业净利率】 相关系数 r = 0.3228, p = 0.363016 决定系数 R² = 0.1042 Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 30740 (\N{CJK UNIFIED IDEOGRAPH-7814}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 21457 (\N{CJK UNIFIED IDEOGRAPH-53D1}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 36153 (\N{CJK UNIFIED IDEOGRAPH-8D39}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 29992 (\N{CJK UNIFIED IDEOGRAPH-7528}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 30334 (\N{CJK UNIFIED IDEOGRAPH-767E}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 19975 (\N{CJK UNIFIED IDEOGRAPH-4E07}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 20803 (\N{CJK UNIFIED IDEOGRAPH-5143}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 28909 (\N{CJK UNIFIED IDEOGRAPH-70ED}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 19982 (\N{CJK UNIFIED IDEOGRAPH-4E0E}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 25237 (\N{CJK UNIFIED IDEOGRAPH-6295}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 20837 (\N{CJK UNIFIED IDEOGRAPH-5165}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 36235 (\N{CJK UNIFIED IDEOGRAPH-8D8B}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 21183 (\N{CJK UNIFIED IDEOGRAPH-52BF}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 25552 (\N{CJK UNIFIED IDEOGRAPH-63D0}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 21450 (\N{CJK UNIFIED IDEOGRAPH-53CA}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 27425 (\N{CJK UNIFIED IDEOGRAPH-6B21}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 23545 (\N{CJK UNIFIED IDEOGRAPH-5BF9}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 30340 (\N{CJK UNIFIED IDEOGRAPH-7684}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 24433 (\N{CJK UNIFIED IDEOGRAPH-5F71}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 21709 (\N{CJK UNIFIED IDEOGRAPH-54CD}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 65288 (\N{FULLWIDTH LEFT PARENTHESIS}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 22238 (\N{CJK UNIFIED IDEOGRAPH-56DE}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 24402 (\N{CJK UNIFIED IDEOGRAPH-5F52}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 65289 (\N{FULLWIDTH RIGHT PARENTHESIS}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 20851 (\N{CJK UNIFIED IDEOGRAPH-5173}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 27880 (\N{CJK UNIFIED IDEOGRAPH-6CE8}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 36880 (\N{CJK UNIFIED IDEOGRAPH-9010}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 24180 (\N{CJK UNIFIED IDEOGRAPH-5E74}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 19978 (\N{CJK UNIFIED IDEOGRAPH-4E0A}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 21319 (\N{CJK UNIFIED IDEOGRAPH-5347}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 33829 (\N{CJK UNIFIED IDEOGRAPH-8425}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 19994 (\N{CJK UNIFIED IDEOGRAPH-4E1A}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 20928 (\N{CJK UNIFIED IDEOGRAPH-51C0}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 21033 (\N{CJK UNIFIED IDEOGRAPH-5229}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 29575 (\N{CJK UNIFIED IDEOGRAPH-7387}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 30408 (\N{CJK UNIFIED IDEOGRAPH-76C8}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 33021 (\N{CJK UNIFIED IDEOGRAPH-80FD}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 21147 (\N{CJK UNIFIED IDEOGRAPH-529B}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 31995 (\N{CJK UNIFIED IDEOGRAPH-7CFB}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 24378 (\N{CJK UNIFIED IDEOGRAPH-5F3A}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 25345 (\N{CJK UNIFIED IDEOGRAPH-6301}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 32493 (\N{CJK UNIFIED IDEOGRAPH-7EED}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 24320 (\N{CJK UNIFIED IDEOGRAPH-5F00}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 25903 (\N{CJK UNIFIED IDEOGRAPH-652F}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 20986 (\N{CJK UNIFIED IDEOGRAPH-51FA}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 36164 (\N{CJK UNIFIED IDEOGRAPH-8D44}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 20135 (\N{CJK UNIFIED IDEOGRAPH-4EA7}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 24635 (\N{CJK UNIFIED IDEOGRAPH-603B}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\site-packages\seaborn\utils.py", line 61 fig.canvas.draw() UserWarning: Glyph 35745 (\N{CJK UNIFIED IDEOGRAPH-8BA1}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 221 plt.tight_layout() UserWarning: Glyph 21464 (\N{CJK UNIFIED IDEOGRAPH-53D8}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 221 plt.tight_layout() UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 221 plt.tight_layout() UserWarning: Glyph 30456 (\N{CJK UNIFIED IDEOGRAPH-76F8}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 221 plt.tight_layout() UserWarning: Glyph 20851 (\N{CJK UNIFIED IDEOGRAPH-5173}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 221 plt.tight_layout() UserWarning: Glyph 24615 (\N{CJK UNIFIED IDEOGRAPH-6027}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 221 plt.tight_layout() UserWarning: Glyph 30697 (\N{CJK UNIFIED IDEOGRAPH-77E9}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 221 plt.tight_layout() UserWarning: Glyph 38453 (\N{CJK UNIFIED IDEOGRAPH-9635}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 30740 (\N{CJK UNIFIED IDEOGRAPH-7814}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 21457 (\N{CJK UNIFIED IDEOGRAPH-53D1}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 36153 (\N{CJK UNIFIED IDEOGRAPH-8D39}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 29992 (\N{CJK UNIFIED IDEOGRAPH-7528}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 30334 (\N{CJK UNIFIED IDEOGRAPH-767E}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 19975 (\N{CJK UNIFIED IDEOGRAPH-4E07}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 20803 (\N{CJK UNIFIED IDEOGRAPH-5143}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 28909 (\N{CJK UNIFIED IDEOGRAPH-70ED}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 19982 (\N{CJK UNIFIED IDEOGRAPH-4E0E}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 25237 (\N{CJK UNIFIED IDEOGRAPH-6295}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 20837 (\N{CJK UNIFIED IDEOGRAPH-5165}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 36235 (\N{CJK UNIFIED IDEOGRAPH-8D8B}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 21183 (\N{CJK UNIFIED IDEOGRAPH-52BF}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 25552 (\N{CJK UNIFIED IDEOGRAPH-63D0}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 21450 (\N{CJK UNIFIED IDEOGRAPH-53CA}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 27425 (\N{CJK UNIFIED IDEOGRAPH-6B21}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 23545 (\N{CJK UNIFIED IDEOGRAPH-5BF9}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 30340 (\N{CJK UNIFIED IDEOGRAPH-7684}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 24433 (\N{CJK UNIFIED IDEOGRAPH-5F71}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 21709 (\N{CJK UNIFIED IDEOGRAPH-54CD}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 65288 (\N{FULLWIDTH LEFT PARENTHESIS}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 22238 (\N{CJK UNIFIED IDEOGRAPH-56DE}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 24402 (\N{CJK UNIFIED IDEOGRAPH-5F52}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 65289 (\N{FULLWIDTH RIGHT PARENTHESIS}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 20851 (\N{CJK UNIFIED IDEOGRAPH-5173}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 27880 (\N{CJK UNIFIED IDEOGRAPH-6CE8}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 36880 (\N{CJK UNIFIED IDEOGRAPH-9010}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 24180 (\N{CJK UNIFIED IDEOGRAPH-5E74}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 19978 (\N{CJK UNIFIED IDEOGRAPH-4E0A}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 21319 (\N{CJK UNIFIED IDEOGRAPH-5347}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 33829 (\N{CJK UNIFIED IDEOGRAPH-8425}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 19994 (\N{CJK UNIFIED IDEOGRAPH-4E1A}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 20928 (\N{CJK UNIFIED IDEOGRAPH-51C0}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 21033 (\N{CJK UNIFIED IDEOGRAPH-5229}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 29575 (\N{CJK UNIFIED IDEOGRAPH-7387}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 30408 (\N{CJK UNIFIED IDEOGRAPH-76C8}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 33021 (\N{CJK UNIFIED IDEOGRAPH-80FD}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 21147 (\N{CJK UNIFIED IDEOGRAPH-529B}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 31995 (\N{CJK UNIFIED IDEOGRAPH-7CFB}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 24378 (\N{CJK UNIFIED IDEOGRAPH-5F3A}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 25345 (\N{CJK UNIFIED IDEOGRAPH-6301}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 32493 (\N{CJK UNIFIED IDEOGRAPH-7EED}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 24320 (\N{CJK UNIFIED IDEOGRAPH-5F00}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 25903 (\N{CJK UNIFIED IDEOGRAPH-652F}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 20986 (\N{CJK UNIFIED IDEOGRAPH-51FA}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 36164 (\N{CJK UNIFIED IDEOGRAPH-8D44}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 20135 (\N{CJK UNIFIED IDEOGRAPH-4EA7}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 24635 (\N{CJK UNIFIED IDEOGRAPH-603B}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 35745 (\N{CJK UNIFIED IDEOGRAPH-8BA1}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 21464 (\N{CJK UNIFIED IDEOGRAPH-53D8}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 30456 (\N{CJK UNIFIED IDEOGRAPH-76F8}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 24615 (\N{CJK UNIFIED IDEOGRAPH-6027}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 30697 (\N{CJK UNIFIED IDEOGRAPH-77E9}) missing from font(s) Arial. Warning (from warnings module): File "D:/Users/lenovo/Desktop/2.py", line 224 plt.savefig(output_image, dpi=300, bbox_inches='tight', facecolor='white') UserWarning: Glyph 38453 (\N{CJK UNIFIED IDEOGRAPH-9635}) missing from font(s) Arial. ✅ 图表已保存为 '恒瑞医药AI研发分析.png' ✅ 数据已导出至:hengrui_stata_data_1762828762.csv 💾 Stata脚本已生成:hengrui_analysis.do 🎉 分析完成!请检查图表和导出文件。 Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 30740 (\N{CJK UNIFIED IDEOGRAPH-7814}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 21457 (\N{CJK UNIFIED IDEOGRAPH-53D1}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 36153 (\N{CJK UNIFIED IDEOGRAPH-8D39}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 29992 (\N{CJK UNIFIED IDEOGRAPH-7528}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 30334 (\N{CJK UNIFIED IDEOGRAPH-767E}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 19975 (\N{CJK UNIFIED IDEOGRAPH-4E07}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 20803 (\N{CJK UNIFIED IDEOGRAPH-5143}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 28909 (\N{CJK UNIFIED IDEOGRAPH-70ED}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 19982 (\N{CJK UNIFIED IDEOGRAPH-4E0E}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 25237 (\N{CJK UNIFIED IDEOGRAPH-6295}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 20837 (\N{CJK UNIFIED IDEOGRAPH-5165}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 36235 (\N{CJK UNIFIED IDEOGRAPH-8D8B}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 21183 (\N{CJK UNIFIED IDEOGRAPH-52BF}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 25552 (\N{CJK UNIFIED IDEOGRAPH-63D0}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 21450 (\N{CJK UNIFIED IDEOGRAPH-53CA}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 27425 (\N{CJK UNIFIED IDEOGRAPH-6B21}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 23545 (\N{CJK UNIFIED IDEOGRAPH-5BF9}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 30340 (\N{CJK UNIFIED IDEOGRAPH-7684}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 24433 (\N{CJK UNIFIED IDEOGRAPH-5F71}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 21709 (\N{CJK UNIFIED IDEOGRAPH-54CD}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 65288 (\N{FULLWIDTH LEFT PARENTHESIS}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 22238 (\N{CJK UNIFIED IDEOGRAPH-56DE}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 24402 (\N{CJK UNIFIED IDEOGRAPH-5F52}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 65289 (\N{FULLWIDTH RIGHT PARENTHESIS}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 20851 (\N{CJK UNIFIED IDEOGRAPH-5173}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 27880 (\N{CJK UNIFIED IDEOGRAPH-6CE8}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 36880 (\N{CJK UNIFIED IDEOGRAPH-9010}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 24180 (\N{CJK UNIFIED IDEOGRAPH-5E74}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 19978 (\N{CJK UNIFIED IDEOGRAPH-4E0A}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 21319 (\N{CJK UNIFIED IDEOGRAPH-5347}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 33829 (\N{CJK UNIFIED IDEOGRAPH-8425}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 19994 (\N{CJK UNIFIED IDEOGRAPH-4E1A}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 20928 (\N{CJK UNIFIED IDEOGRAPH-51C0}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 21033 (\N{CJK UNIFIED IDEOGRAPH-5229}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 29575 (\N{CJK UNIFIED IDEOGRAPH-7387}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 30408 (\N{CJK UNIFIED IDEOGRAPH-76C8}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 33021 (\N{CJK UNIFIED IDEOGRAPH-80FD}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 21147 (\N{CJK UNIFIED IDEOGRAPH-529B}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 31995 (\N{CJK UNIFIED IDEOGRAPH-7CFB}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 24378 (\N{CJK UNIFIED IDEOGRAPH-5F3A}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 25345 (\N{CJK UNIFIED IDEOGRAPH-6301}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 32493 (\N{CJK UNIFIED IDEOGRAPH-7EED}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 24320 (\N{CJK UNIFIED IDEOGRAPH-5F00}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 25903 (\N{CJK UNIFIED IDEOGRAPH-652F}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 20986 (\N{CJK UNIFIED IDEOGRAPH-51FA}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 36164 (\N{CJK UNIFIED IDEOGRAPH-8D44}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 20135 (\N{CJK UNIFIED IDEOGRAPH-4EA7}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 24635 (\N{CJK UNIFIED IDEOGRAPH-603B}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 35745 (\N{CJK UNIFIED IDEOGRAPH-8BA1}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 21464 (\N{CJK UNIFIED IDEOGRAPH-53D8}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 30456 (\N{CJK UNIFIED IDEOGRAPH-76F8}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 24615 (\N{CJK UNIFIED IDEOGRAPH-6027}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 30697 (\N{CJK UNIFIED IDEOGRAPH-77E9}) missing from font(s) Arial. Warning (from warnings module): File "D:\python\Lib\tkinter\__init__.py", line 876 func(*args, **kw) UserWarning: Glyph 38453 (\N{CJK UNIFIED IDEOGRAPH-9635}) missing from font(s) Arial.
最新发布
11-12
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值