MCQ Single Best Answer Not Set

QA Python tuple can also be created without using parentheses

ID: #3721 Python Tuple MCQ 299 views
Question Info
#3721Q ID
Not SetDifficulty
Python Tuple MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A False
  • B True
Correct Answer: Option 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

Challenge a friend or share with your study group.