python sep 打印的分隔符 python3网络爬虫书中错写为seq

import urllib.request as ur
import urllib.error as ue
try:
    response = ur.urlopen("https://cuiqingcai.com/index.html")
except ue.HTTPError as e:
    print(e.reason, e.headers, e.code, sep="
")

  

你不能把坏习惯扔出窗外 但你可以一步步赶下电梯
原文地址:https://www.cnblogs.com/Ychao/p/9336956.html