Answer the question
In order to leave comments, you need to log in
Python get text inside tag?
<div class="rating-box__active" style="width: 100%">
<div class="rating-box__item rating-box__item_active"></div>
<div class="rating-box__item rating-box__item_active"></div>
<div class="rating-box__item rating-box__item_active"></div>
<div class="rating-box__item rating-box__item_active"></div>
<div class="rating-box__item rating-box__item_active"></div>
</div>
Answer the question
In order to leave comments, you need to log in
my_div = soup.find('div',class_='rating-box__active').get('style')
print(my_div) # Вывод - width: 100%
print(my_div[7:-1]) # Вывод - 100
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question