Örnek :Girilen İki Sayıyı Toplama
1 2 3 4 5 6 | sayi1 = input('1. Sayı : ') sayi2 = input('1. Sayı : ') toplam=float(sayi1)+float(sayi2) print("Toplam :{0} ".format(toplam)) |
Çıktı:
1 2 3 4 5 | 1. Sayı : 10 1. Sayı : 20 Toplam :30.0 |
Örnek :Girilen İki Sayıyı Toplama
1 2 3 4 5 6 | sayi1 = input('1. Sayı : ') sayi2 = input('1. Sayı : ') toplam=float(sayi1)+float(sayi2) print("Toplam :{0} ".format(toplam)) |
Çıktı:
1 2 3 4 5 | 1. Sayı : 10 1. Sayı : 20 Toplam :30.0 |
Yorum Yap