Skip to content

Commit 35f425c

Browse files
Add files via upload
1 parent 71da8a9 commit 35f425c

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

EN/calc.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
Divide=float(number1)/float(number2)
2020
Percentage=float(number1)%float(number2)
2121
if process=="collect":
22-
print("CONCLUSION=", format(collect))
22+
print("{0} + {1} = {2}". format(number1,number2,collect))
2323
if process=="Extraction":
24-
print("CONCLUSION=", format(Extraction))
24+
print("{0} - {1} = {2}". format(number1,number2,Extraction))
2525
if process=="Impact":
26-
print("CONCLUSION=", format(Impact))
26+
print("{0} * {1} = {2}". format(number1,number2,Impact))
2727
if process=="Divide":
28-
print("CONCLUSION=", format(Divide))
28+
print("{0} / {1} = {2}". format(number1,number2,Divide))
2929
if process=="Percentage":
30-
print("CONCLUSION=", format(Percentage))
30+
print("{0} % {1} = {2}". format(number1,number2,Percentage))
3131
if command=="about":
3232
print(about)
3333
if command=="exit":
@@ -40,4 +40,4 @@
4040
if command=="web-site":
4141
print("linuxuserslinuxmint.github.io")
4242
if command=="ver":
43-
print("Version: 0.1.2 (Last Updated September 4 , 2023 , 22:21)")
43+
print("Version: 0.1.5 (Last Updated September 5 , 2023 , 21:59)")

INSTALL/EN/calc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ if command=="calc":
1919
Divide=float(number1)/float(number2)
2020
Percentage=float(number1)%float(number2)
2121
if process=="collect":
22-
print("SONUC=", format(collect))
22+
print("{0} + {1} = {2}". format(number1,number2,collect))
2323
if process=="Extraction":
24-
print("SONUC=", format(Extraction))
24+
print("{0} - {1} = {2}". format(number1,number2,Extraction))
2525
if process=="Impact":
26-
print("SONUC=", format(Impact))
26+
print("{0} * {1} = {2}". format(number1,number2,Impact))
2727
if process=="Divide":
28-
print("SONUC=", format(Divide))
28+
print("{0} / {1} = {2}". format(number1,number2,Divide))
2929
if process=="Percentage":
30-
print("SONUC=", format(Percentage))
30+
print("{0} % {1} = {2}". format(number1,number2,Percentage))
3131
if command=="about":
3232
print(about)
3333
if command=="exit":
@@ -40,4 +40,4 @@ if command=="git-address":
4040
if command=="web-site":
4141
print("linuxuserslinuxmint.github.io")
4242
if command=="ver":
43-
print("Version: 0.1.2 (Last Updated September 4 , 2023 , 22:21)")
43+
print("Version: 0.1.5 (Last Updated September 5 , 2023 , 21:59)")

INSTALL/TR/calc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ if command=="calc":
1919
bol=float(sayi1)/float(sayi2)
2020
yuzde=float(sayi1)%float(sayi2)
2121
if islem=="top":
22-
print("SONUC=", format(top))
22+
print("{0} + {1} = {2}". format(sayi1,sayi2,top))
2323
if islem=="cık":
24-
print("SONUC=", format(cık))
24+
print("{0} - {1} = {2}". format(sayi1,sayi2,cık))
2525
if islem=="carp":
26-
print("SONUC=", format(carp))
26+
print("{0} * {1} = {2}". format(sayi1,sayi2,carp))
2727
if islem=="bol":
28-
print("SONUC=", format(bol))
28+
print("{0} / {1} = {2}". format(sayi1,sayi2,bol))
2929
if islem=="yuzde":
30-
print("SONUC=", format(yuzde))
30+
print("{0} % {1} = {2}". format(sayi1,sayi2,yuzde))
3131
if command=="about":
3232
print(about)
3333
if command=="exit":
@@ -40,4 +40,4 @@ if command=="git-address":
4040
if command=="web-site":
4141
print("linuxuserslinuxmint.github.io")
4242
if command=="ver":
43-
print("Sürüm: 0.1.2 (Son Güncellenme Tarihi 4 Eylül , 2023 , 22:21)")
43+
print("Sürüm: 0.1.5 (Son Güncellenme Tarihi 5 Eylül , 2023 , 21:59)")

TR/calc.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
bol=float(sayi1)/float(sayi2)
2020
yuzde=float(sayi1)%float(sayi2)
2121
if islem=="top":
22-
print("SONUC=", format(top))
22+
print("{0} + {1} = {2}". format(sayi1,sayi2,top))
2323
if islem=="cık":
24-
print("SONUC=", format(cık))
24+
print("{0} - {1} = {2}". format(sayi1,sayi2,cık))
2525
if islem=="carp":
26-
print("SONUC=", format(carp))
26+
print("{0} * {1} = {2}". format(sayi1,sayi2,carp))
2727
if islem=="bol":
28-
print("SONUC=", format(bol))
28+
print("{0} / {1} = {2}". format(sayi1,sayi2,bol))
2929
if islem=="yuzde":
30-
print("SONUC=", format(yuzde))
30+
print("{0} % {1} = {2}". format(sayi1,sayi2,yuzde))
3131
if command=="about":
3232
print(about)
3333
if command=="exit":
@@ -40,4 +40,4 @@
4040
if command=="web-site":
4141
print("linuxuserslinuxmint.github.io")
4242
if command=="ver":
43-
print("Sürüm: 0.1.2 (Son Güncellenme Tarihi 4 Eylül , 2023 , 22:21)")
43+
print("Sürüm: 0.1.5 (Son Güncellenme Tarihi 5 Eylül , 2023 , 21:59)")

0 commit comments

Comments
 (0)