Python String isDecimal
decimals = '12 12 12 321'
print(decimals.isdecimal())
OUTPUT = True
Real Rabbit
decimals = '12 12 12 321'
print(decimals.isdecimal())
OUTPUT = True