You have already completed these exercises!
Do you want to take them again?
You completed the Python Multiple Variable Values Exercises from W3Schools.com
Share on:
What is a correct syntax to add the value 'Hello World', to 3 variables in one statement?
x, y, z = 'Hello World'
x = y = z = 'Hello World'
x|y|z = 'Hello World'