import urllib.request, urllib.parse, urllib.error
from bs4 import BeautifulSoup
url = input("enter your url here : " )
html = urllib.request.urlopen(url).read()
soup = BeautifulSoup(html,'html.parser')
tags = soup('a')
for tag in tags:
print(tag.get('href',none)
为什么我会收到此错误?
SyntaxError:解析时出现意外的EOF
答案 0 :(得分:0)
print(tag.get('href',none)
必须以另一个)
结尾
喜欢这个:
print(tag.get('href',none))