I want to create multiple variables based on a number that I have defined.
Currently, I have a client and a server running and every time a client joins, I want the server t
Don't do this. If you want to have a dynamic group of items pointed to by names, that's what a dict is for. If you just want an list of items in a particular order, that's what a list is for.
Variable names should be kept to what you, the programmer, actually write in your code. Down the other path lies madness.