Python finden Ziffern in String mit Dezimal

>>> import re
>>> re.findall("\d+\.\d+", "variable name")
['13.4']
Zarish Anwar