Python Encontre dígitos em string com decimal

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