Почему переменная возвращает None? - Python
Формулировка задачи:
Приветствую
Подскажите, почему в данном коде div выводит None, а не верстку
Листинг программы
- import urllib.request
- from bs4 import BeautifulSoup
- def get_html(url):
- response = urllib.request.urlopen(url)
- return response.read()
- def parse(html):
- soup = BeautifulSoup(html, "html.parser")
- div = soup.find("ul", {"class": "view view-articles-front view-id-articles_front view-display-id-page_1 articles-blocks view-dom-id-47b103d2edc6e4c6e666b9f8c188e972"})
- print (div)
- print (soup)
- def main():
- parse(get_html('http://www.festivalnauki.ru/articles'))
- if __name__ == '__main__':
- main()
Решение задачи: «Почему переменная возвращает None?»
textual
Листинг программы
- import urllib.request
- from bs4 import BeautifulSoup
- def get_html(url):
- response = urllib.request.urlopen(url)
- return response.read()
- def parse(html):
- soup = BeautifulSoup(html, "html.parser")
- div = soup.find("div", {"class": "view-articles-front"})
- print(div)
- parse(get_html('http://www.festivalnauki.ru/articles'))
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д