+ 1
Now this is right
name=input ("Enter your name:") print ("Hello ," + name)
2 odpowiedzi
+ 2
Change the 'Print' to 'print' - its a keyword. The variable 'name' should match with the 'Name' given in the input. Please see the code below:
print ("Hello ," + Name)
+ 1
Remove the "+", replace "Name" with "name", and replace "Print" with "print"