摘要: from PIL import Image from PIL import ImageFilter im = Image.open("picture.jpg") om = im.filter(ImageFilter.EMBOSS) om.save('picture1.jpg') (原图见上一条随笔) 阅读全文
posted @ 2020-04-14 10:39 哦噢 阅读(142) 评论(0) 推荐(0) 编辑
摘要: from PIL import Image from PIL import ImageFilter im = Image.open("picture.jpg") om = im.filter(ImageFilter.CONTOUR) om.save('pictureContour.jpg') 阅读全文
posted @ 2020-04-14 10:37 哦噢 阅读(279) 评论(0) 推荐(0) 编辑
摘要: PIL(Python Image Library)库是Python语言的第三方库,需要通过pip工具安装。安装PIL库的方法如下,需要注意,安装库的名字是pillow。 PIL库支持图像储存、显示和处理,他能够处理几乎所有图片格式,可以完成对图像的缩放、剪裁、叠加以及向图像添加线条、图像和文字等操作 阅读全文
posted @ 2020-04-14 10:12 哦噢 阅读(1932) 评论(0) 推荐(1) 编辑
摘要: from wordcloud import WordCloud import matplotlib.pyplot as plt import jieba path_txt='盗墓笔记.txt' f = open(path_txt,'r',encoding='UTF-8').read() cut_te 阅读全文
posted @ 2020-04-05 10:45 哦噢 阅读(128) 评论(0) 推荐(0) 编辑
摘要: import jieba txt = open("三国演义.txt", "r", encoding='utf-8').read() words = jieba.lcut(txt) counts = {} for word in words: if len(word) == 1: continue e 阅读全文
posted @ 2020-04-05 10:19 哦噢 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 1 def move(n, a, b, c): 2 if n == 1: 3 print(a, '->', c) 4 else: 5 move(n-1, a, c, b) 6 move(1, a, b, c) 7 move(n-1, b, a, c) 8 n = input('请输入塔数:') 9 阅读全文
posted @ 2020-03-26 14:58 哦噢 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 1 import math 2 import time 3 long=14 4 s,m=1,2 5 start = time.perf_counter() 6 for i in range(long+1): 7 s=math.sqrt((1-math.sqrt(1-pow(s,2)))/2) 8 m 阅读全文
posted @ 2020-03-19 15:22 哦噢 阅读(131) 评论(0) 推荐(0) 编辑
摘要: print("Hello World") 阅读全文
posted @ 2020-03-11 16:24 哦噢 阅读(252) 评论(0) 推荐(0) 编辑
摘要: n=eval(input()) n1=pow(n,0) n2=pow(n,1) n3=pow(n,2) n4=pow(n,3) n5=pow(n,4) n6=pow(n,5) print(n1,n2,n3,n4,n5,n6) 阅读全文
posted @ 2020-03-11 16:06 哦噢 阅读(1055) 评论(0) 推荐(0) 编辑
摘要: #说句心里话 name=input("") heartword=input("") str1=name+',我想对你说,'+heartword print(str1) 阅读全文
posted @ 2020-03-11 15:49 哦噢 阅读(1713) 评论(0) 推荐(0) 编辑