<strong class="f_Strong">
¥
<big>9</big>
.37
<small class="hide-usd">($ 1.38)</small>
</strong>
response = requests.get(link, headers=headers)
html = bs(response.content, "lxml")
steam_price = html.find('strong', class_='f_Strong').text
($ 1.38)
whole_part = html.find('strong',class_='f_Strong').big.text
float_part = html.find('strong',class_='f_Strong').big.next_sibling.strip()
print(whole_part + float_part)