24.3k views
5 votes
Which line of code will cause the loop to execute exactly one time?

for b in range(12, 12):
for b in range(12, 13):
for b in range(13, 13):
for b in range():

1 Answer

5 votes
for b in range (12, 13)?
User Elcan
by
6.3k points