Which is a correctly formatted Python tuple?
o
[12, "cirde", "square]
n : 12, "shape1": "circle”, “shape2": “square"}
(12, circle”, “square")
12 circle square

Respuesta :

Limosa

Answer:

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

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().

Answer:

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

Explanation:

XD