-
Notifications
You must be signed in to change notification settings - Fork 0
/
03-while-loop.py
39 lines (25 loc) · 984 Bytes
/
03-while-loop.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# while dongusu baslangıc ornekleri
counter = 0
while counter < 5:
print ("%s 5ten kucuktur" % counter)
counter = counter + 1
print ("{} 5ten kucuk degildir" .format(counter))
print("\n---------------------------------------\n")
print ("Karekok bulucu")
secim = 'e'
while (secim == 'e'):
sayi = int(input("Bir Sayını giriniz : "))
sayi = float(sayi)
print("Girdiğiniz sayının karekökü : {}".format(sayi ** (1/2))) # sqrt(sayi)
secim = input("\nDevam etmek icin 'e' , cıkmak icin herhangi bir tusa bas : ")
print("*** Cıkıs Yapıldı ***")
print("\n---------------------------------------\n")
while True:
parola = input("parola belirleyin: ")
if not parola:
print("parola bölümü boş geçilemez!")
elif len(parola) in range(3, 8):
print("Yeni parolanız", parola)
break
else:
print("parola 8 karakterden uzun 3 karakterden kısa olmamalı")