Quiz Question 1 of 5
Given the following code:
`str_var = "Python Programming"
count = 0 for c in str_var: if c.isupper(): count += 1
print(count)`
How many times does the for loop iterate, and what is the final value of count
?
Choose the correct answer below: