Question: only answer 6.3 6.1 (9 pts) What is the output of calling these functions? Write it down in the box on the right. (Remember that

only answer 6.3
6.1 (9 pts) What is the output of calling these functions? Write it down in the box on the right. (Remember that return takes you out of the function immediately.) def loop(): >>> loop10 for i in range (5): print (1) return i Page 3 of 7 CS 8 (Winter 2020) >>> loop2() def loop2(): for i in range (5): if(i == 3): return i print (1) return i CON- >>> loop30) def loop(): for i in range (5): if(i == 3): break print (1) return i 6.2 (2 pts) Now assume vall - loop () and val2 = loop2(). For the Python code in the left box, write the output of the lines in the right box. print (vall) 4 print(val2) 3 6.3 (3 pts) Briefly explain why the output boxes above have different values
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
