
python
zhumengstyle
希望系统总结一下以前自己遇到的大大小小的坑,总结一下,分享给大家!
展开
-
python简单爬虫(获取图片)
转载来自:本文原地址:http://www.cnblogs.com/fnng/p/3576154.html 特此转载记录,仅供学习使用!如有不妥,请告知删除!谢谢!#coding=utf-8import urllibimport redef getHtml(url): page = urllib.urlopen(url) html = page.read() retur转载 2017-09-07 09:43:15 · 472 阅读 · 0 评论 -
简单的python画图小实例
import turtle as tt.goto(100,0)for i in range(100): t.left(80) t.fd(100) t.left(135) t.fd(165) t.left(125) t.fd(115)效果图: 举一反三:import turtle as tt.goto(100,0)for i ...原创 2018-04-24 11:19:59 · 75957 阅读 · 5 评论