摘要: import urllib.request import re from tkinter import * win = Tk() win.geometry('500x300+400+300') t = Text(win) t.pack() url = 'http://stock.sohu.com/news/' html = urllib.request.urlopen(url).read... 阅读全文
posted @ 2016-09-01 08:33 疯陈演义 阅读(365) 评论(0) 推荐(0) 编辑