0
What number is printed at the end of this code?
num1 = 0 num2 = 0 for x in range(5): num1 = x for y in range(14): num2 = y + 3 print(num1 + num2)
4 Answers
+ 5
Run the code and see it
+ 2
There is a code playground in sololearn. You can see it there
+ 2
PRAJAKTA SUBHASH GURAV Besides: why the loops?
+ 1
PRAJAKTA SUBHASH GURAV your code output :-
https://code.sololearn.com/c872J2958ESD/?ref=app