来自: 曾晓青 的帖子
王锋 时间:2011年02月14日 星期一 10:28
安装python 2.6.5 和matplotlib 以及 numpy 后,在“中文注释图.py” 文件中,写如下代码: # -*- coding: utf-8 -*- """ 在不同的坐标系中添加文字。 """ import matplotlib.pyplot as plt import numpy as np x = np.linspace(-1,1,10) y = x**2 fig = plt.figure(figsize=(8,4)) ax = plt.subplot(111) plt.plot(x,y) for i, (_x, _y) in enumerate(zip(x, y)): p.. 详细>>
来自: 王锋 的博客
王锋 时间:2009年12月03日 星期四 22:25
一下是一个抓取 http://www.bidders.co.jp 信息的网站,现在把源代码贴出来希望大家多多指点。其中包含一个 配置文件没有列出。生成的是配置文件。 #-*-coding:utf-8-*- from BeautifulSoup import BeautifulSoup import urllib2 import re import string def get_links(url,id): print url html=urllib2.urlopen(url.strip()) s.. 详细>>
Zeuux © 2024
京ICP备05028076号