0
Iâm new in coding and I need help
Why Is the code doing this answer and not the one I want ? https://code.sololearn.com/c0LGvVojEBrJ/?ref=app
2 Answers
+ 2
Before input, you need to include
int(input(âYour text: â))
Python doesnât evaluate the data type being inputted (it usually assumes you are inputting a string). So you need to manually convert an input to int.
+ 2
int(input())