string python isDecimal

decimals = '12 12 12 321'

print(decimals.isdecimal())

OUTPUT = True
Real Rabbit