Posts by user130283 • 51 points
1 post
-
5
votes1
answer2798
viewsA: How to make multiple prints in the same line in python 3?
Python 3 automatically places a line break at the end of print, but you can override with whatever you want it to be by adding the parameter end: print('1', end='') print('2') Thus the print will…