OМ
Size: a a a
VA
V
А
import re
text = '<span class="block">099 634 05 05</span> <span class="block">093 634 05 05</span> <span class="block">068 634 05 05</span>'
match = list(filter(lambda el: len(el) > 1, re.findall(r'>([\d ]+)<', text)))
result = ''
for el in match:
result += f'+{el}, '
print(result)
match = re.findall(r'>([\d ]{2,})<', text)
VA
$
ᅠ
СС
$
VA
E
AT
K
AT
VA
V