C:\Users\Андрей\PycharmProjects\parse.py\padsdfe.py\Scripts\python.exe C:/Users/Андрей/Desktop/ee.py
C:\Users\������\AppData\Local\Programs\Python\Python38\python.exe: can't open file 'C:/Users/Андрей/Desktop/ee.py': [Errno 2] No such file or directory
Process finished with exit code 2-
такая надпись появляется при вводе кода:
import requests
from bs4 import BeautifulSoup as BS
r=requests.get('https://www.kinopoisk.ru/top/navigator/m_act[country]/1%2C1/m_act[hide]/on/m_act[years]/2019%3A/m_act[num_vote]/12500/m_act[ex_rating]/6%3A/m_act[is_film]/on/order/ex_rating/#results')
html=BS(r.content,'html.parser')
for el in html.select('.ten-Items'):
title=el.select('.name > a')
print(title[0].text)