To declare multiple variables at the \"same time\" I would do:
a, b = True, False
But if I had to declare much more variables, it turns les
Sounds like you're approaching your problem the wrong way to me.
Rewrite your code to use a tuple or write a class to store all of the data.