Ask Question
30 October, 09:56

Which is a correctly formatted Python tuple?

o

[12, "cirde", "square]

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

(12, circle", "square")

12 circle square

+3
Answers (1)
  1. 30 October, 10:50
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers