Would both of the following for clauses generate the same number of loop iterations? for num in range (4): for num in range (1, 5): True False Question 13 After the execution of the following statement, the variable price will reference the value price - int (68.549) 68 68.55 68.6 Question 14 What is the output of the below code snippet: print (10,20,30, sep=';')