0
What is wrong with this code š
NAME =str(input(enter the name: ) Print ("hello",NAME) I tried this code alot but every time when I enter the name they say it is not defined š and I don't know how to solve this problem ! By the way it is in python language
4 Answers
+ 4
NAME = input("enter the name:")
+ 3
Your Code:
NAME =str(input(enter the name:))
Print("hello",name)
My Code:
NAME = input("enter the name:")
print("hello",NAME)
Other Code:
print("hello",input("enter the name:"))
0
It must work. Maybe you've forgot to close the bracket.
0
You forgot to close the bracket