Focus mode
break
ile sağlıyoruz.break
komutunu gördüğümüz yerde döngüden çıkıyoruz.for i in range(10):
if i == 3:
breakprint(i)
0 1 2
x = 0
while x < 10:
print(x)
x += 1
if x == 3:
break
0 1 2
continue
ile sağlayacağız.continue
komutu ile karşılaşıldığı zaman, döngünün bir sonraki iterasyonuna geçilir.for i in range(10):
if i == 3:
continueprint(i)
0 1 2 4 5 6 7 8 9
x = 0
while x < 10:
x += 1
if x == 3:
continue
print(x)
1 2 4 5 6 7 8 9 10
Programs to Accelerate Your Progress in a Software Career
Join our 4-8 month intensive Patika+ bootcamps, start with the fundamentals and gain comprehensive knowledge to kickstart your software career!
You need to enroll in the course to be able to comment!