Hey guys, so grateful if you can help. I'm absolutely new to both program language and Python, but determined to get some proficiency here. Using Python 3.7 I entered this code:
name="David"
surname="Hayward"
print (name, surname)
a="Python"
b="is"
c="cool!"
print(a, b, c)
name=input("What is your name? ")
input("Hello,", name)The Consule shows the following output:Output:David Hayward
Python is cool!
What is your name?According to the tutorial, it should give the following output though:Output:David Hayward
Python is cool!
What is your name? David
Hello, DavidAny idea why it is not reading David and Hello, David ?
