Advertisement
Taigar2000

Ты панк или эмо?

Dec 19th, 2020
606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. def solution(soup):
  2.     arr = soup.find_all('div',attrs={'class': 'similar-artists-item'})
  3.     res = []
  4.     for i in arr:
  5.         res.append(i.find('h3').find('a').text)
  6.     return res[:5]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement