我正在尝试使用beautifulsoup检查网站上是否存在课程。
我希望能够返回False,如果不是,则返回True。
我收到SyntaxError:语法无效
这里有两个URL来显示差异和我拥有的代码段。
def license_exists(soup):
if soup.find('td', class = 'style3')
return True
else:
return False
答案 0 :(得分:2)
使用
def license_exists(soup):
if soup.find('td', class_ = 'style3'): #or if soup.find('td', {'class':'style3'})
return True
else:
return False
注意:class
是python中的保留关键字。