SyntaxFix
Write A Post
Hire A Developer
Questions
I found a work around. Python will convert the number to a float. Simply calling float first then converting that to an int will work: output = int(float(input))
output = int(float(input))