Experience the power of community-driven knowledge on IDNLearn.com. Ask your questions and get detailed, reliable answers from our community of experienced experts.
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.