Focus mode
while
while
döngüsünün içine yazdığım yapı belirttiğim ifade doğru olduğu sürece çalışacak.while
'da da if
'te olduğu gibi bir test mantığı var aslında. Testimiz doğru çıktığı sürece while
bloğunun içindeki kodları tekrarlıyorumwhile
ın içindeki kodu python anlasın diye, if
te yaptığımız gibi iç kısmına boşluk bırakarak yazacağız.x = int(input("Bir sayı girin: ")) while x < 0: print("Sayı negatif, lütfen pozitif bir sayı girin.") x = int(input("Bir sayı girin: ")) print("sayınız pozitif ve", x)
Bir sayı girin: -5 Sayı negatif, lütfen pozitif bir sayı girin. Bir sayı girin: -12 Sayı negatif, lütfen pozitif bir sayı girin. Bir sayı girin: -3 Sayı negatif, lütfen pozitif bir sayı girin. Bir sayı girin: 6 sayınız pozitif ve 6 x = 0 while x < 3: print(x) x = x + 1 0 1 2
toplam = 0 x = 0 while x <=100: toplam += x x += 1 print(toplam)
5050
toplam = 0
x = 0
while x <=100:
toplam += x
print(x)
print(toplam)
0
0
0
0
0
.
.
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!