Career Tracks
Exams
MCQ
Companies
Opportunities
Pricing
MCQ Practice
Programming
Python — Output Questions
Question
Medium
What is the output of: a,b,c=1,2,3 a,b=b,a print(a,b,c)?
A
1 2 3
B
2 1 3
C
3 1 2
D
1 3 2
Show Answer
← Back to Python — Output Questions questions