Skip to content

Instantly share code, notes, and snippets.

@Ektaynot
Created February 26, 2019 17:13
Show Gist options
  • Save Ektaynot/e1ef7cef7d8a681617ec1a9bfb302a7b to your computer and use it in GitHub Desktop.
Save Ektaynot/e1ef7cef7d8a681617ec1a9bfb302a7b to your computer and use it in GitHub Desktop.
Vergisiz olarak borç hesaplama
print ("Elektrik kullanımı Fiyatlanırma merkezine hoşgeldiniz")
print ("Lütfen istediğiniz işlemi seçiniz")
print ("1-Borç Öğrenme")
print ("2-Fiyatlandırma")
print ("3-Çıkış")
while True:
a = int(input("Lütfen İşlem Seçin"))
if a == (1):
b = float(input("Kaç KiloWatt Kullandığınız Girin"))
print (b* (0.46),("TL"))
if a == (2):
print ("1 kWh = 0,46 Kr")
if a == (3):
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment