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
Like JavaScript you can also use multiple statements on one line in python a = 1; b = "Hello World"; c += 3
a = 1; b = "Hello World"; c += 3