2010年2月18日 星期四

python打開網址原始碼寫入文字檔

python打開網址原始碼寫入文字檔如下,
\\\\\\\\\\\\\\\\\\\\\
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#python 3.1
#python為unicode編碼
#decode解碼
#encode編碼

import urllib.request

url1="http://www.pchome.com.tw"
f = urllib.request.urlopen(url1)
ff=f.read().decode("utf-8")
f.close()
strff=str(ff)

j=open("./sample.txt","w")
j.writelines(strff)
j.close()



\\\\\\\\\\\\\\\\\\
沒有加上decode就會出現x90\xbd\xe6\的結果

沒有留言: