SyntaxFix
Write A Post
Hire A Developer
Questions
In Python 3.5.1 things like these work:
c = input('Enter number:') print (int(float(c))) print (round(float(c)))
and
Enter number: 4.7 4 5
George.