To declare multiple variables in a single line in Python (such as to initialize them), use: ```python a = b = c = d = '' ``` This way only works if they are all the same type of variable, such as a string in this case.