Perfect Number Generator With Python
In this article I will tell you how to use Python to find numbers. After reading the article, please state your ideas under the topic. If you have any problems, write down your questions.
1 2 3 4 5 6 7 8 9 10 11 | sayı = int(input("Sayı:")) i = 1 toplam = 0 while (i < sayı): if (sayı % i == 0): toplam += i i += 1 if (toplam == sayı): print(sayı,"mükemmel bir sayıdır.") else: print(sayı,"mükemmel bir sayı değildir.") |