
python
文章平均质量分 69
ymznice
这个作者很懒,什么都没留下…
展开
-
python将print输出保存为日志文件
###################################################################import sys # 需要引入的包# 以下为包装好的 Logger 类的定义class Logger(object): def __init__(self, filename="Default.log"): self.terminal = sys.stdout self.log = open(filename, "a")...原创 2021-10-30 00:01:38 · 918 阅读 · 0 评论 -
python 第三方库的地址
http://www.lfd.uci.edu/%7Egohlke/pythonlibs/有了这个网址,再也不用担心pip 安装错版本了。想要哪个版本的库应有尽有。之前运行一个程序时缺少 PIL 库,本来想用pip自动安装 PIL (Python Imaging Library).结果却发现出现这样的错误:Could not find a version that satisfies the req...原创 2018-04-28 15:02:00 · 1223 阅读 · 0 评论 -
python中用matplotlib画多幅图时出现图形部分重叠的解决方案
1.解决方法:使用函数 tight_layout()2.具体使用方法import matplotlib.pyplot as pltfig = plt.figure()'''具体的画图程序'''fig.tight_layout()fig.tight_layout()功能:使得子图横纵坐标更加紧凑,主要用于自动调整图区的大小以及间距,使所有的绘图及其标题、坐标轴...转载 2018-10-22 16:37:58 · 19157 阅读 · 2 评论