Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 34 Online
OpenStudy (anonymous):

Good evening. I am new to programming and I am enjoying the MIT course.... So far. I am just looking to have a basic understanding of code and have the ability to write a little bit. I am trying a variation on PS0 that prints first and last name at the end, but I get them printed together as shown below. Any help is appreciated. questionLast = ('What is your last name?') questionFirst = ('What is your first name?') print questionLast LastName = raw_input() print questionFirst FirstName = raw_input() print "hello, " + FirstName + LastName) My result is : hello MattMorse

OpenStudy (anonymous):

The easiest solution is to add a string containing a space into your print statement: print "hello, " + FirstName + " " + LastName

OpenStudy (anonymous):

You could always just add a comma instead of the space or +: print "hello", firstname, lastname. Should work.

OpenStudy (anonymous):

Thanks for the help. Now that I look at it, I see the mistakes that I made. Now on to problem set 1!

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
Lilmunchin: Trump or Biden
3 minutes ago 19 Replies 1 Medal
ARTSMART: Art!
57 minutes ago 5 Replies 4 Medals
Jasonisyours: What were the key causes of the French Revolution in 1789?
52 minutes ago 3 Replies 5 Medals
PureSoulless: Why is the word "Pedophile" always censored in yt vids?
1 day ago 3 Replies 0 Medals
Jalli: What's 58x3634u00b07
22 hours ago 6 Replies 3 Medals
arriya: who wanna play roblox
1 day ago 5 Replies 1 Medal
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!