
python 图形
文章平均质量分 76
hellodrawing
这个作者很懒,什么都没留下…
展开
-
python 基础教程第21章
#!/usr/bin/env python # -*- coding = utf-8 -* #一个简单的ReportLab程序 from reportlab.graphics.shapes import Drawing, String from reportlab.graphics import renderPDF d = Drawing(100, 100)#Drawi转载 2017-02-22 13:39:17 · 501 阅读 · 0 评论 -
python基础教程最终的太阳黑子程序
#!/usr/bin/env python # -*- coding: utf-8 -*- #python基础教程最终的太阳黑子程序 from urllib import urlopen from reportlab.graphics.shapes import * from reportlab.graphics.charts.lineplots import LinePlot转载 2017-02-24 16:27:49 · 1451 阅读 · 1 评论 -
#python基础教程太阳黑子图形程序的第一个原型
#!/usr/bin/env python # -*- coding: utf-8 -*- #python基础教程太阳黑子图形程序的第一个原型(sunspots_roto.py) from reportlab.lib import colors from reportlab.graphics.shapes import * from reportlab.graphics转载 2017-02-24 16:25:45 · 1295 阅读 · 0 评论 -
统计书中单词出现次数, 然后把数据生成pdf
#/usr/bin/env python # *-*coding:utf-8 *-* #运行环境python3用Counter统计书中单词的使用次数 import sys from collections import Counter #参照python基础教程使用lines 和blocks生成文本块 # def lines(filee原创 2017-03-07 13:25:28 · 949 阅读 · 0 评论