Featured image of post Print Only Numbers From String Python / Printing string and integer value in the same line mean that you are trying to concatenate int value with strings.

Print Only Numbers From String Python / Printing string and integer value in the same line mean that you are trying to concatenate int value with strings.

>>> str = h3110 23 cat 444.4 rabbit 11 2 dog >>> [int(s) for s in str.split() if s.isdigit()] [23, 11, 2].