em chào anh,chị
em đang tự học python để lấy dữ liệu từ web
link em lấy: https://s.cafef.vn/lich-su-kien.chn
code em đang test nhưng bị lỗi, nhờ anh chị xem bị lỗi gì ạ, em cảm ơn ạ
import requests
from bs4 import BeautifulSoup
r=requests.get('https://s.cafef.vn/lich-su-kien.chn')
xuly=BeautifulSoup(r.text,'html.parser')
data = xuly.find_all("td")
#print(data)
for i in data: print(i.a.get('title'))