Ask your own question, for FREE!
MIT 6.189 A Gentle Introduction to Programming Using Python (OCW) 16 Online
OpenStudy (anonymous):

For exercise 1.2, why does the expected output not look like a tic-tac-toe grid?

OpenStudy (e.mccormick):

It is in text, so there are limits of what can be done.

OpenStudy (anonymous):

This is what I entered and it seemed to work.Remember that white space is important. print " | |" print "--------" print " | |" print "--------" print " | |"

OpenStudy (espex):

Another way to produce it. top = ("__|__|__") bot = (" | |") print (top + "\n" + top + "\n" + bot)

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!