asked 146k views
1 vote
Which is a correctly formatted Python tuple?

o
[12, "cirde", "square]
n : 12, "shape1": "circle”, “shape2": “square"}
(12, circle”, “square")
12 circle square

asked
User Przbadu
by
8.5k points

2 Answers

5 votes

Answer:

(12, "circle”, “square") is the correct answer.

Step-by-step explanation:

XD

answered
User Ovilia
by
8.4k points
3 votes

Answer:

(12, "circle”, “square") is the correct answer.

Step-by-step explanation:

The following answer is true because the following answer is in the correct format. The tuple is the data type of the Python Programming language which is defined inside the parentheses "()" and it is an immutable type that means its elements is not changed after once the element is inserted in the tuple. Tiple is also defined by the parentheses "()" or by the predefined function tuple().

answered
User ILikeTurtles
by
6.7k points