А
Size: a a a
А
👑️
match = re.search(r"Terasa: (\d+),(\d+)", s)
terasa = int(match.group(1)) + int(match.group(2)) / 100А
match = re.search(r"Terasa: (\d+),(\d+)", s)
terasa = int(match.group(1)) + int(match.group(2)) / 100S
БГ
S
А
S
👑️
👑️
import re
s = "Terasa: 27,80 m"
match = re.search(r"Terasa: (.+) m", s)
print(float(match.group(1).replace(",",".")))А
S
S
S
БГ
\D?S
\D?