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

In hwk 1.3 It gives the instructions: "Write a program that prints out the tic-tac-toe board from exercise 1.2, but uses variables to cut down on the amount of typing you have to do. What I wrote below outputs the correct answer; but it seems so inefficient to have to write print 5 times. Is it possible to print the output of multiple variables and have them jump down to the next line each time? a = " | |" b = "--------" print a print b print a print b print a

OpenStudy (anonymous):

I guess usually you would use some loop around print a and print b. You can put print a + "\n" + b for a new line.

OpenStudy (anonymous):

Great advice @estudier I used the "\n" to create this which printed the tic-tac-toe design perfectly: print a + "\n" + b + "\n" + a + "\n" + b + "\n" + a

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!