摘要:
1. PIL库主要有2个方面的功能: (1) 图像归档:对图像进行批处理、生产图像预览、图像格式转换等。 (2) 图像处理:图像基本处理、像素处理、颜色处理等。 2.在PIL中,任何一个图像文件都可以用Image对象表示Image类的图像读取和创建方法: 方法 描述 Image.open(filen 阅读全文
摘要:
import jiebatxt = open("文章.txt","r",encoding='gbk',errors='replace').read()words = jieba.lcut(txt)counts = {}for word in words: if len(word) == 1: con 阅读全文
摘要:
n=input("输入汉诺塔碟子总数") def move(n,a,b,c): if n==1: print(a,'->',c) else: move(n-1,a,c,b) move(1,a,b,c) move(n-1,b,a,c) 阅读全文