We need to continue to count the games until they've finished the set. Code a while loop with the condition set_finished == False.
while
set_finished == False
Make sure to pick while followed by set_finished and then ==, False:.
set_finished
==
False: