I am trying to print results on the same line for a card game, here is the desired output I want:

Here is what I get:

Here is my code:
for List in tableau:
print
print ("Row", Row, ":", end="")
print
Row += 1
for x in List:
print (x, end="")
I’m using Python 3, thanks.
You need to call
printas a function in Python 3:Look at the difference in the output between Python 2 and Python 3:
Python 2:
Python 3:
A slightly more compact way of doing it would be like this: