from urllib.request import urlopen
from urllib.error import HTTPError
from bs4 import BeautifulSoup
def getTitle(url):
try:
html=urlopen(url)
except HTTPError as e: #伺服器錯誤
return none
obj=BeautifulSoup(html,"html.parser")
title=obj.body.h1
except AttributeError as e: #屬性錯誤
return title
title=getTitle(" ")
if title == None:
print("None Found")