对网页的相应操作
登录到163网站,保存下来首页
Type "help", "copyright", "credits" or "license" for more information.
>>> import urllib
>>> url='http://www.163.com'
>>> content=urllib.urlopen(url).readline() #保存下来第一行
>>> print content
<!DOCTYPE html>
>>> filename=urllib.urlretrieve(url,filename="/mnt/newfile") #将网站内容保存在本地
[kiosk@desktop0 mnt]$ ls -l /mnt/newfile
-rw-r--r-- 1 root root 750052 Apr 8 10:09 /mnt/newfile