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

In problem set 0, how can I insert a space between the output of "last name" and "birthdate"? Thanks

OpenStudy (e.mccormick):

In Python, a space is added if print elements are separated by a comma or if you put it in the print statement. ``` >>> print 'a'+'b' ab >>> print 'a '+'b' a b >>> print 'a','b' a b >>> ```

OpenStudy (anonymous):

as stated by e.mccormick those are the ways to add a space, personally I prefer the comma method since it is easier to see while checking your commands.

OpenStudy (anonymous):

Thank you very much to e.mccormick and nick-merrick for taking the time to respond!

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!
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!