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 RĂ©ponses
+ 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)