so what i have is a list of lists
each individual list is a list of cards
cards1 = [AS, 10H, 3D, ...ect.]
cards2 = [4H, KS, 6S, 9D,....ect]
ColumnList = [cards1, cards2, cards3...etc]
It should print out a spider solitare tableau,
but as you play the game, this columns become different lengths
ex:
tableau:
1 2 3
AS 4H etc etc..
10H KS
3D 6S
9D
i need a way to keep print the tableau every time a card is moved
the tableau has 10 columns total
any help would be appreciated!