Explore Westonci.ca, the top Q&A platform where your questions are answered by professionals and enthusiasts alike. Our platform connects you with professionals ready to provide precise answers to all your questions in various areas of expertise. Connect with a community of professionals ready to provide precise solutions to your questions quickly and accurately.

How does Python recognize a tuple? You use tuple when you create it, as in "myTuple = tuple(3, 5)". You use brackets around the data values. You use parentheses around the data values. You declare myTuple to be a tuple, as in "myTuple = new tuple"

Sagot :

Answer:

Python recognizes a tuple when you have parenthesis and a comma. You use brackets when you're creating a list.

You cannot declare a tuple in that format. It has to be:

myTuple = (__, __) or something of the like. There are many ways you can do it, just not the way that you have it.

Explanation:

Python class.