上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 32 下一页

2015年10月27日

pygame --- 可怜的小乌龟

摘要: 来于----@小甲鱼工作室import pygameimport sysfrom pygame.locals import *#初始化pygame.init()size = width,height=600,400 #设置背景的大小speed = [-2,1] #设置图片移动的速度bg=(... 阅读全文

posted @ 2015-10-27 20:18 `Elaine 阅读(618) 评论(0) 推荐(0) 编辑

2015年10月24日

Tkinter 计算器

摘要: from tkinter import *master = Tk()frame = Frame(master)frame.pack(padx=10,pady=10)v1 = StringVar()v2 = StringVar()v3 = StringVar()def test(content): ... 阅读全文

posted @ 2015-10-24 20:52 `Elaine 阅读(301) 评论(0) 推荐(0) 编辑

Tkinter 小应用

摘要: import tkinter as tkclass APP: def __init__(self,master): frame = tk.Frame(master) frame.pack(side = tk.LEFT,padx=50,pady=50) ... 阅读全文

posted @ 2015-10-24 14:29 `Elaine 阅读(604) 评论(0) 推荐(0) 编辑

GUI界面------tkinter

摘要: import tkinter as tkclass APP: def __init__(self,master): frame = tk.Frame(master) frame.pack(side = tk.LEFT,padx=50,pady=50) ... 阅读全文

posted @ 2015-10-24 13:35 `Elaine 阅读(180) 评论(0) 推荐(0) 编辑

python批量下载淘宝图片3

摘要: import urllib.requestimport osdef url_open(url): req = urllib.request.Request(url) req.add_header('User-Agent', 'Mozilla/5.0 (Windows NT 6.2; WO... 阅读全文

posted @ 2015-10-24 10:11 `Elaine 阅读(532) 评论(0) 推荐(0) 编辑

python批量下载图片3

摘要: import urllib.requestimport osdef url_open(url): req = urllib.request.Request(url) req.add_header('User-Agent', 'Mozilla/5.0 (Windows NT 6.2; WO... 阅读全文

posted @ 2015-10-24 08:04 `Elaine 阅读(687) 评论(0) 推荐(0) 编辑

2015年10月22日

扒图2

该文被密码保护。 阅读全文

posted @ 2015-10-22 20:38 `Elaine 阅读(6) 评论(0) 推荐(0) 编辑

扒图

该文被密码保护。 阅读全文

posted @ 2015-10-22 19:58 `Elaine 阅读(3) 评论(0) 推荐(0) 编辑

2015年10月21日

代理ip

摘要: import urllib.requesturl = 'http://www.whatismyip.com.tw'proxy_support = urllib.request.ProxyHandler({'http':'14.221.94.210:9999'})opener = urllib.req... 阅读全文

posted @ 2015-10-21 20:24 `Elaine 阅读(124) 评论(0) 推荐(0) 编辑

2015年10月13日

lalala~~

该文被密码保护。 阅读全文

posted @ 2015-10-13 21:15 `Elaine 阅读(7) 评论(0) 推荐(0) 编辑

上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 32 下一页

导航