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)

8th Jul 2019, 5:07 AM
Dreadhead1290 XL
Dreadhead1290 XL - avatar
2 odpowiedzi
+ 3
You used wrong indentation. Don't use indentation here.
8th Jul 2019, 5:11 AM
Airree
Airree - avatar
+ 3
Second problem is you used slanted quotes, probably from copying and pasting. This runs: name = input("what is your name? ") print("hi " + name)
8th Jul 2019, 5:17 AM
David Ashton
David Ashton - avatar