Ask Question
5 January, 11:15

Which is a correctly formatted Python tuple?

o

[12, "cirde", "square]

n : 12, "shape1": "circle", "shape2": "square"}

(12, circle", "square")

12 circle square

+2
Answers (1)
  1. 5 January, 12:49
    0
    (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 ().
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Which is a correctly formatted Python tuple? o [12, "cirde", "square] n : 12, "shape1": "circle", "shape2": "square"} (12, circle", ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers