📜  获取title属性美汤——Python代码示例

📅  最后修改于: 2022-03-11 14:46:18.493000             🧑  作者: Mango

代码示例2
for body in message.find_all('div', {'class': 'body'}):
  # grab div by class name
  if body.find('div', {'class': 'date'}):
    text = body.find('div', {'class': 'date'})
    # find div by 'title' attribute
    title = text.get('title', 'No title attribute')
    print(title)