使用带有Python 3的beatifulsoup提取页面标题不会返回正确的标题

时间:2018-05-14 21:35:16

标签: python html beautifulsoup html-parsing

我正在试图提取斯图尔特国际机场的标题(https://www.swfny.com/)。我的代码如下:

from bs4 import BeautifulSoup
import requests

url="https://www.swfny.com/"
response = requests.get(url)

soup = BeautifulSoup(response.text, 'html.parser')

print(soup.title.string)

在页面的html代码中,我看到以下标题声明

<title>Home - SWF - Stewart International Airport</title>

我希望看到以下文字为标题&#34;主页 - SWF - 斯图尔特国际机场&#34;作为输出。但我不把它作为输出,而是我得到了&#34;航空&#34;。

0 个答案:

没有答案