# in python you can assign values to multiple variables in one line a, b, c = "one", "two", "there" print(a) print(b) print(c)