Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mustafamuratcoskun
GitHub Repository: mustafamuratcoskun/Sifirdan-Ileri-Seviyeye-Python-Programlama
Path: blob/master/Fonksiyonlar/Kodlama Egzersizleri/tam_bolenler.py
765 views
1
def tambolenleribulma(sayı):
2
tam_bolenler = []
3
4
for i in range(2,sayı):
5
6
if (sayı % i == 0):
7
tam_bolenler.append(i)
8
return tam_bolenler
9
10
while True:
11
12
sayı = input("Sayı:")
13
14
if (sayı == "q"):
15
print("Program Sonlandırılıyor")
16
break
17
else:
18
sayı = int(sayı)
19
20
print("Tam bölenler:",tambolenleribulma(sayı))
21
22
23
24
25
26
27
28
29
30