Ask Question

Which is a correctly formatted Python tuple?

o

[12, "cirde", "square]

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

(12, circle", "square")

12 circle square

+5
Answers (1)
  1. 23 December, 20:41
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers