I'm very new to python and I am making a text based game. In the start I ask the users name. How would I add what the user input to when I "print"?
print ("Welcome to my first game! It's not much but it's mine.")
print ("What is your name")
name = input()
In the code above how would I add the users name into the next line? For example It would look something like this:
print ("Hi """insert name here""", lets start!")
I hope I made this clear as I don't have a large enough Python vocabulary to make my ideas clear