Focus mode
break
ile sağlıyoruzbreak
komutunu gördüğümüz yerde döngüden çıkıyoruz.for i in range(10):
if i == 3:
break
print(i)
x = 0
while x < 10:
print(x)
x += 1
if x == 3:
break
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:
continue
print(i)
x = 0
while x < 10:
x += 1
if x == 3:
continue
print(x)
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!