tupleD = (3, 9, 9, 9, 9, 10)
tupleD.count(9)
The code above will return 4 on the next line.
Tuples are list of items stored in a variable. Tuples are used to store collection of items in python. Tuples are immutable unlike list. This means they are ordered and unchangeable.
We cannot add , change or remove items after the tuples have been declared. Tuples are enclosed with ().
Let's find the next line the code will display.
learn more on tuples here: https://brainly.com/question/4503928?referrer=searchResults