True/False: Both of the following for clauses would generate the same number of loop iterations.

True/False: Both of the following for clauses would generate the same number of loop iterations.

for num in range(4):

for num in range(1,5):


Answer: True


Learn More :