0
im a new programmer ive been trying very hard , can you tell me whats wrong with this code cause it wont run
name = input(“what is your name? “) print(“hi” + name)
2 Respuestas
+ 3
You used wrong indentation. Don't use indentation here.
+ 3
Second problem is you used slanted quotes, probably from copying and pasting. This runs:
name = input("what is your name? ")
print("hi " + name)