我正在尝试从某些餐厅的开放表中提取评论,但由于其中一些餐厅没有评论而收到 TypeError。
我目前的代码是:
ratings = restDOM.by_id("RestPopLabel_ReviewsFormat")[0].attributes
ratings = ratings['title']
我正在尝试做类似的事情:
if restDOM.by_id("RestPopLabel_ReviewsFormat")[0] is present
ratings = restDOM.by_id("RestPopLabel_ReviewsFormat")[0].attributes
ratings = ratings['title']
else
ratings = 'not available'
实现 if 语句的最佳方法是什么?