My issue
I want full explanation of this question
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
I want full explanation of this question
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
@ramchandu5
The loop begin with i=2 and will go till i<=5.
inside loop u have a condition that if i==4 then u will break from the loop.
then after that u are printing python and then incrementing the value of i by 2.
now This code will print “python” for i=0,2 .
for i=4 it will break from the loop.