摘要:
PIL 具备(但不限于) 以下的能力: 1.数十种图档格式的读写能力。 常见的JPEG, PNG, BMP, GIF, TIFF 等格式,都在PIL 的支援之列。 另外,PIL 也支援黑白、灰阶、自订调色盘、RGB true color、带有透明属性的RBG true color、CMYK 及其它... 阅读全文
摘要:
import random产生0-1的随机数(无符号浮点数):a = random.random()产生指定区间(x,y)内的随机数(浮点数):a = random.uniform(x,y)产生指定区间(x,y)内的随机整数:a = random.randint(x,y)产生指定序列L所拥有的随机数... 阅读全文