0
Please explain this error
I am new to python, and I just made my first code in an attempt to answer the spy number challenge. I don't understand the error it is outputing https://code.sololearn.com/cQ81mRpKlBfy/?ref=app
6 Answers
+ 5
You have a string num and you're attempt to perform math with it. Change line 1 to:
num = int(input("Input: "))
to fix that issue.
+ 2
where is the code?
+ 1
in the bottom of the question
+ 1
oh yeahđ
đ
+ 1
it's fine, I forgot to upload it with the q&a at first anyway...
+ 1
oh, thanks!