Skip to content

Commit 4ed0aee

Browse files
Add files via upload
1 parent f5f7180 commit 4ed0aee

File tree

3 files changed

+28
-28
lines changed

3 files changed

+28
-28
lines changed

EN/calc.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
multiplication=float(number1)*float(number2)
2020
division=float(number1)/float(number2)
2121
Percentage=float(number1)%float(number2)
22-
if process=="Addition":
22+
if process=="collect":
2323
print("{0} + {1} = {2}". format(number1,number2,addition))
24-
elif process=="Subraction":
24+
elif process=="Extraction":
2525
print("{0} - {1} = {2}". format(number1,number2,subraction))
26-
elif process=="Multiplication":
26+
elif process=="Impact":
2727
print("{0} * {1} = {2}". format(number1,number2,multiplication))
28-
elif process=="Division":
28+
elif process=="Divide":
2929
print("{0} / {1} = {2}". format(number1,number2,division))
3030
elif process=="Percentage":
3131
print("{0} % {1} = {2}". format(number1,number2,Percentage))
@@ -47,4 +47,4 @@
4747
elif command=="licence":
4848
print("This Software is protected under the GPL2 license")
4949
else:
50-
print("Invalid Command!")
50+
print("Invalid Command!")

TR/calc.py

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
if command=="calc":
1212
print("calc> Girebileceğiniz işlemler: ")
1313
print("top\ncık\n\carp\nbol\nyuzde\nabout")
14-
sayi1=input('{0} 1. sayiyi giriniz: '. format(command))
15-
sayi2=input('{0} 2. sayiyi giriniz: '. format(command))
16-
islem=input('{0} Gerçekleştirmek İstediğiniz İşlemi Giriniz: '. format(command))
14+
sayi1=input('calc> 1. sayiyi giriniz: ')
15+
sayi2=input('calc> 2. sayiyi giriniz: ')
16+
islem=input('calc> Gerçekleştirmek İstediğiniz İşlemi Giriniz: ')
1717
top=float(sayi1)+float(sayi2)
1818
cık=float(sayi1)-float(sayi2)
1919
carp=float(sayi1)*float(sayi2)
@@ -29,22 +29,22 @@
2929
print("{0} / {1} = {2}". format(sayi1,sayi2,bol))
3030
elif islem=="yuzde":
3131
print("{0} % {1} = {2}". format(sayi1,sayi2,yuzde))
32-
else:
33-
print("Geçersiz İşlem")
34-
if command=="about":
35-
print(about)
36-
elif command=="exit":
37-
exit()
38-
elif command=="help":
39-
print("Python calc Help")
40-
print("\n Command: calc , about , help , exit , git-address , web-site , ver , licence")
41-
elif command=="git-address":
42-
print("Github Link: https://github.com/LinuxUsersLinuxMint")
43-
elif command=="web-site":
44-
print("linuxuserslinuxmint.github.io")
45-
elif command=="ver":
46-
print("Sürüm: 0.2 (Son Güncellenme Tarihi 17 Eylül , 2023 , 14:43)")
47-
elif command=="licence":
48-
print("This Software is protected under the GPL2 license")
49-
else:
50-
print("Geçersiz Komut")
32+
else:
33+
print("Geçersiz İşlem")
34+
if command=="about":
35+
print(about)
36+
elif command=="exit":
37+
exit()
38+
elif command=="help":
39+
print("Python calc Help")
40+
print("\n Command: calc , about , help , exit , git-address , web-site , ver , licence")
41+
elif command=="git-address":
42+
print("Github Link: https://github.com/LinuxUsersLinuxMint")
43+
elif command=="web-site":
44+
print("linuxuserslinuxmint.github.io")
45+
elif command=="ver":
46+
print("Sürüm: 0.2 (Son Güncellenme Tarihi 17 Eylül , 2023 , 14:43)")
47+
elif command=="licence":
48+
print("This Software is protected under the GPL2 license")
49+
else:
50+
print("Geçersiz Komut")

TR/not.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NOT: Kodları istediğiniz gibi değiştirip kullanabilirsiniz. Kodlar açık kaynak kodludur.
22
NOT2: Kodların Orjinal Hali LinuxUsersLinuxMint Tarafından Yazılmıştır.
3-
GİTHUB: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint
3+
GİTHUB: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint

0 commit comments

Comments
 (0)