My Python Quiz
The ultimate place to learn Python!
⌂
|
Start Quiz
|
List of questions
|
Other Quizes
Question #54:
What gets printed?
a = 1 b = 2 a,b = b,a output = "{} {}".format(a, b) print(output)
1 2
2 1
An exception is thrown
This program has undefined behavior
Next Question