MCQ Practice Single Best Answer Topic: Python Tuple MCQ

Q A Python tuple can also be created without using parentheses

Question ID
#3721
Subchapter
Python Tuple MCQ
Action
Choose one option below

Choose Your Answer

Click an option to check whether your answer is correct.

  • A False
  • B True
Correct Answer: B

Explanation

A tuple can also be created without using parentheses. It is called tuple packing.

For example:

my_tuple = "Yellow", 20, "Red"
print(my_tuple)

Share This Question

Share this MCQ with your friends or study group.