Home »
Python »
Python Variables MCQs
Check whether the given statement is correct or not?
11. Check whether the given statement is correct or not
a, b, c = 10, 12, 12
- Yes
- No
Answer: A) Yes
Explanation:
a, b, c = 10, 12, 12 it is one of the methods to assign three different variables to three different values in a single line of code.