for i, j in cards: # cards = a list containing list of cards - RANDOM OUTPUTS
print(i)
print(j)
print("\t")
How do I make it so that the output becomes:
TS 6S JS
AH 5S AS
Instead of:
TS
AH
6S
5S
JS
AS
EDIT: changes made above - further specified for the type of code I'm writing.