133k views
21 votes
What is the next line? >>> tupleB = (5, 7, 5, 7, 2, 7) >>> tupleB.count(7) 3 1 2 0

User Essayoub
by
4.6k points

1 Answer

12 votes

Answer:

3 is the next line.

Step-by-step explanation:

.count literally counts how many something is. so, .cout(7) counts how many 7 there is. you can see that there are 3 number 7s.

What is the next line? >>> tupleB = (5, 7, 5, 7, 2, 7) >>> tupleB-example-1
User Schlusie
by
4.3k points