[ad_1]
Khi tôi thực thi mã, tôi nghĩ rằng mã có lỗi nhưng khi tôi thực thi bất kỳ mã nào thì thiết bị đầu cuối lại như thế này
ví dụ 01:
import requests from bs4 import BeautifulSoup url = "https://quotes.toscrape.com/" response = requests.get(url) if response.status_code == 200: soup = BeautifulSoup(response.text , 'html.parser') authors_names = soup.find_all('span',class_= 'authors') for author_name in authors_names: print(author_name.get_text()) else: print(f'failed to retrieve the page.status_code:{response.status_code}')
VÍ DỤ 02:
một = 5
in (a)
phần cuối:
File "<stdin>", line 1 & "C:/Program Files/Python312/python.exe" "c:/Users/Dell/python.py/web scraping.py/test 11.py"
Những gì tôi đã thử:
TÔI ĐÃ GỠ BỎ MÃ VS VÀ CÀI ĐẶT NHƯNG TÔI ĐANG Gặp VẤN ĐỀ CÙNG TRONG CÁC MÁY
Giải pháp 1
Nếu bạn kiểm tra văn bản được trả về từ trang web đó, bạn sẽ lưu ý hai điều:
1. Không có mục nào thuộc loại “span” với lớp “tác giả”.
2. Có những mục thuộc loại “nhỏ” với lớp “tác giả”.
[ad_2]
コメント