Hi, I want to know What is break, continue and pass in Python
for i in range(21):
if i == 10:
print(True," Break Yay we got 10 Break the code ")
break;
else:
continue;
Hi, I want to know What is break, continue and pass in Python
for i in range(21):
if i == 10:
print(True," Break Yay we got 10 Break the code ")
break;
else:
continue;
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs