- 3
NameError: name 'Input' is not defined? 😭😭
HELP WHY THIS HAPPENS, THE SAME HAPPENS WITH "TRUE"
4 Respostas
+ 5
'Input' is not defined seems normal, because 'input' is defined ^^
as in most of languages, case is sensitive ;P
+ 3
Can you show your attemot?
If you show your attempt we will try our best to help you .Please attach the code with description:
https://www.sololearn.com/post/75089/?ref=app
+ 3
If you are using Input() for taking input from user then you are wrong.
Python is case-sensitive.So in Capital it will not work .
You should take input with smaller i.For example:
text=input()
+ 2
oh my god, it's running, I love you, indeed the lowercase or uppercase letter influences this, thanks, I'm new to using python