Eğitim Teknolojileri Uzmanı, Eğitim Danışmanı, BTK Akademi Eğitmeni, Microsoft Açık Akademi, Vakademi Eğitmeni, Udemy Eğitmeni, Abaküs Kitap Yazarı, Python, C#, SQL Server, ADO.NET EF, WinForms, ASP.NET, Visual Studio, Amiga, Commodore 64
14 Ekim 2018 Pazar
Python ile Faktöriyel Hesabı
# Faktöriyel hesabı yapan fonksiyon
def faktoriyel_hesapla(sayi):
sonuc = 1
while sayi > 1:
sonuc = sonuc * sayi
sayi -= 1
return sonuc
girilen = input("Faktöriyeli hesaplanacak sayıyı giriniz: ")
sayi = int(girilen)
sonuc = faktoriyel_hesapla(sayi)
print("{}! = {}".format(sayi,sonuc))
Labels:
Faktöriyel Hesabı,
Python,
Python Kodlama
Kaydol:
Kayıt Yorumları (Atom)
Hiç yorum yok:
Yorum Gönder