【发布时间】:2016-02-14 19:17:57
【问题描述】:
python3中这段代码有问题:
import urllib.request
fhand=urllib.request.urlopen('http://www.py4inf.com/code/romeo.txt')
print(fhand.read())
它的输出是:
b'But soft what light through yonder window breaks'
b'It is the east and Juliet is the sun'
b'Arise fair sun and kill the envious moon'
b'Who is already sick and pale with grief'
为什么我得到b'...'?
我该怎么做才能得到正确的回应?
正确的文字应该是
But soft what light through yonder window breaks
It is the east and Juliet is the sun
Arise fair sun and kill the envious moon
Who is already sick and pale with grief
【问题讨论】:
标签: python python-3.x urllib