Beginner Python
Q8 / 101

Which of the following creates a tuple in Python?

Correct! Well done.

Incorrect.

The correct answer is C) (1, 2, 3)

C

Correct Answer

(1, 2, 3)

Explanation

Tuples are created with parentheses. They are immutable, unlike lists which use square brackets.

Progress
8/101