This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author steven.daprano
Recipients Sush0907, steven.daprano
Date 2020-01-28.13:00:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1580216444.11.0.107613114436.issue39476@roundup.psfhosted.org>
In-reply-to
Content
The "num" variable is not a number, it *is* a string. Just because you call it "num" doesn't magically turn it into a number. The `input` function returns a string.

You might be thinking of Python 2.7 where `input` automatically evaluated the string as Python code. Python 3 does not do that. If you want to convert the string result of `input` to be a float or an int or some other type, you need to call the `float` or `int` functions.
History
Date User Action Args
2020-01-28 13:00:44steven.dapranosetrecipients: + steven.daprano, Sush0907
2020-01-28 13:00:44steven.dapranosetmessageid: <1580216444.11.0.107613114436.issue39476@roundup.psfhosted.org>
2020-01-28 13:00:44steven.dapranolinkissue39476 messages
2020-01-28 13:00:44steven.dapranocreate