I need anyone to explain me this problem
can anyone explain the problem
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
I need anyone to explain me this problem
can anyone explain the problem
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
@vidhya_863
initially i=0;
and the loop run till i<=5
then u print “python”.
then u check if i==4 then u break the loop;
then u increment i by 2.
So, this code will print python 3 times , for 0,2,4.