from matplotlib.font_manager import FontProperties
# 在此设置字体及大小
font = FontProperties(fname=r"/root/whq/font/simhei.ttf", size=14)
plt.figure()
plt.xlabel(u'x轴', FontProperties=font)
plt.ylabel(u'y轴', FontProperties=font)
plt.title(u'test——绘图', FontProperties=font)
import numpy as np
plt.plot(np.arange(1, 10), np.arange(1, 10))
宋体:
# 宋体
from matplotlib import pyplot as plt
from matplotlib.font_manager import FontProperties
# 在此设置字体及大小
font = FontProperties(fname=r"/root/whq/font/SimSun.ttf", size=14)
plt.figure()
plt.xlabel(u'x轴', FontProperties=font)
plt.ylabel(u'y轴', FontProperties=font)
plt.title(u'test——绘图', FontProperties=font)
import numpy as np
plt.plot(np.arange(1, 10), np.arange(1, 10))
python保存为位深度16图像 python保存图像函数
基于python-opencv3的图像显示和保存操作import cv2 as cvimport numpy as np
使用 python zipfile 模块解压压缩包
python 解压压缩包使用 python 的 zipfile 模块 对同一目录下的所有 zip 文件解压,也可以指定解压文件名import os
import sys
import zipfile
def unzip(filename: str):
file =