python3.3 为什么print不能将变量中的'\n'输出为换行
importurllib.requestimportsysreq=urllib.request.Request("http://www.example.com/")fd=...
import urllib.request
import sys
req=urllib.request.Request("http://www.example.com/")
fd=urllib.request.urlopen(req)
while True:
data=fd.read(1024)
if not len(data):
break
print(data)
该怎么解决? 展开
import sys
req=urllib.request.Request("http://www.example.com/")
fd=urllib.request.urlopen(req)
while True:
data=fd.read(1024)
if not len(data):
break
print(data)
该怎么解决? 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询