I want to create a classic card game in Python based on a users input. I want to ask them > players = int(input('How many players are playing? 2-4 '))
and depending if they say 2.
players = [[], []] will be created
but if they said 3
then players = [[], [], []] would be created
etc
so far all i can do is players [[], [], [], []] which means 4 players must always play the game??