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

In problem set 0 how do you make python print the first name followed by the last name after answering the first 2 questions?

OpenStudy (anonymous):

You can use the print command. You'll find some detail on the command in your assigned reading: http://www.greenteapress.com/thinkpython/thinkCSpy/html/chap02.html . Note that the assignment asks specifically for last name followed by first name. Some simple examples follow: firstName = 'John' lastName = 'Smith' print lastName print firstName print lastName, firstName print lastName + ', ' + firstName

OpenStudy (anonymous):

Thank you!! I really appreciate it.

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!