摘要:
第一题:用resquests库访问百度主页20次,并返回他的text 和content属性的长度。 1 # -*- coding: utf-8 -*- 2 """ 3 Created on Tue May 19 10:12:16 2020 4 5 @author: 49594 6 """ 7 8 i 阅读全文
摘要:
一,读书笔记 Matplotlib matplotlib是Python优秀的数据可视化第三方库matplotlib库的效果可参考http://matplotlib.org/gallery.htmlmatplotlib的使用 由各种可视化类构成,内部结构复杂,受matlab库启发,matplotlab 阅读全文
摘要:
一、要求: 1.计算到圆周率后面越多位越好。 2.用进度条显示计算的进度。 3.要求给出圆周率Π的具体计算方法和解释。 二、算法: 1.拉马努金公式: 2.高斯-勒让德公式: 设置初始值: 反复执行以下步骤直到 与 之间的误差到达所需精度: 则π的近似值为: 下面给出前三个迭代结果(近似值精确到第一 阅读全文
摘要:
1 # -*- coding: utf-8 -*- 2 """ 3 Created on Mon Apr 20 22:51:44 2020 4 5 @author: 49594 6 """ 7 8 import re 9 a = input() 10 b = input() 11 m = re.se 阅读全文
摘要:
1 # -*- coding: utf-8 -*- 2 """ 3 Created on Tue Apr 14 04:08:43 2020 4 5 @author: 49594 6 """ 7 8 import PIL.Image as Image 9 def get_gif(pics_dir,n, 阅读全文
摘要:
1 # 图像基础调整: 图像的亮度、对比度、色度,还可以用于增强图像的锐度,美白 2 # """ 3 4 from PIL import Image 5 from PIL import ImageEnhance 6 import cv2 7 import numpy as np 8 9 10 # i 阅读全文
摘要:
1 # -*- coding: utf-8 -*- 2 """ 3 Created on Sun Apr 12 22:03:26 2020 4 5 @author: 49594 6 """ 7 8 from PIL import Image 9 from PIL import ImageEnhanc 阅读全文
摘要:
1 # -*- coding: utf-8 -*- 2 """ 3 Created on Tue Apr 14 01:55:48 2020 4 5 @author: 49594 6 """ 7 8 from PIL import Image 9 im = Image.open('zhuigan.gi 阅读全文
摘要:
PIL学习总结: 1. 2,PIL库概述: pil库可以完成图像归档和图像处理两方面功能的需求: 图像归档:对图像进行批处理,生成图像预览,图像转换格式等; 图像处理:图像基本处理,像素处理,颜色处理等; 3,PIL库Image类解析: 方法 描述 Image.open(filename) 根据参数 阅读全文