Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Commit1230009

Browse files
Add files via upload
1 parent6e5a08c commit1230009

21 files changed

+694
-25
lines changed

‎EN/calc.py

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#!/usr/bin/python3
2+
frominputdenimport*
3+
"Copyright© 2023 LinuxUsersLinuxMint"
4+
"Python Calcutator Tüm Hakları GPL(Genel Kamu Lisansı) altında korunmaktadır."
5+
"Python Calcutator All Rights Reserved under the GPL(General Public License)."
6+
"Bu Yazılımın Bir Kopyası GİTHUB da yayınlanmaktadır Görüntülemek için: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
7+
"A Copy of This Software is published on GITHUB To view: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
8+
9+
ifcommand=="calc":
10+
print("calc> Transactions You Can Enter: ")
11+
print("collect\nExtraction\n\Impact\nDivide\nPercentage\nabout")
12+
number1 ,number2 ,process
13+
ifprocess=="collect":
14+
print("{0} + {1} = {2}".format(number1,number2,addition))
15+
elifprocess=="Extraction":
16+
print("{0} - {1} = {2}".format(number1,number2,subraction))
17+
elifprocess=="Impact":
18+
print("{0} * {1} = {2}".format(number1,number2,multiplication))
19+
elifprocess=="Divide":
20+
print("{0} / {1} = {2}".format(number1,number2,division))
21+
elifprocess=="Percentage":
22+
print("{0} % {1} = {2}".format(number1,number2,Percentage))
23+
else:
24+
print("Invalid Proccess!")
25+
ifcommand=="about":
26+
print(about)
27+
elifcommand=="exit":
28+
exit()
29+
elifcommand=="help":
30+
print("Python calc Help")
31+
print("\n Command: calc , about , help , exit , git-address , web-site , ver , licence")
32+
elifcommand=="git-address":
33+
print("Github Link: https://github.com/LinuxUsersLinuxMint")
34+
elifcommand=="web-site":
35+
print("linuxuserslinuxmint.github.io")
36+
elifcommand=="ver":
37+
print("Version: 0.1.7 (Last Updated September 8 , 2023 , 18:08)")
38+
elifcommand=="licence":
39+
print("This Software is protected under the GPL2 license")
40+
else:
41+
print("Invalid Command!")

‎EN/inputden.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/python3
2+
"Copyright© 2023 LinuxUsersLinuxMint"
3+
"Python Calcutator-inputdtr Tüm Hakları GPL(Genel Kamu Lisansı) altında korunmaktadır."
4+
"Python Calcutator-inputdtr All Rights Reserved under the GPL(General Public License)."
5+
"Bu Yazılımın Bir Kopyası GİTHUB da yayınlanmaktadır Görüntülemek için: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
6+
"A Copy of This Software is published on GITHUB To view: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
7+
8+
command=input('calc> ')
9+
comtxt="calc> "
10+
about="Python Calcutator CLI(Command Line Interface / Komut Satırı Arayüzü) LICENCE=GPL2"
11+
number1=input('{0} Enter The 1st number: '.format(comtxt))
12+
number2=input('{0} Enter The 2st number: '.format(comtxt))
13+
process=input('{0} Enter the Transaction You Want to Perform: '.format(comtxt))
14+
addition=float(number1)+float(number2)
15+
subraction=float(number1)-float(number2)
16+
multiplication=float(number1)*float(number2)
17+
division=float(number1)/float(number2)
18+
Percentage=float(number1)%float(number2)

‎EN/note.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
NOTE: You can change and use the codes as you wish. The codes are open source.
2+
NOTE2: The original version of the codes was written by LinuxUsersLinuxMint.
3+
GITHUB: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint

‎INSTALL/EN/calc

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
#!/usr/bin/python3
2+
"Copyright© 2023 LinuxUsersLinuxMint"
3+
"Python Calcutator Tüm Hakları GPL(Genel Kamu Lisansı) altında korunmaktadır."
4+
"Python Calcutator All Rights Reserved under the GPL(General Public License)."
5+
"Bu Yazılımın Bir Kopyası GİTHUB da yayınlanmaktadır Görüntülemek için: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
6+
"A Copy of This Software is published on GITHUB To view: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
7+
8+
command=input('calc> ')
9+
about="Python Calcutator CLI(Command Line Interface) LICENCE=GPL2"
10+
ifcommand=="calc":
11+
print("calc> Transactions You Can Enter: ")
12+
print("collect\nExtraction\n\Impact\nDivide\nPercentage\nabout")
13+
number1=input('calc> Enter the 1st number: ')
14+
number2=input('calc> Enter the 2nd number: ')
15+
process=input('calc> Enter the action you want to perform: ')
16+
collect=float(number1)+float(number2)
17+
Extraction=float(number1)-float(number2)
18+
Impact=float(number1)*float(number2)
19+
Divide=float(number1)/float(number2)
20+
Percentage=float(number1)%float(number2)
21+
ifprocess=="collect":
22+
print("{0} + {1} = {2}".format(number1,number2,collect))
23+
elifprocess=="Extraction":
24+
print("{0} - {1} = {2}".format(number1,number2,Extraction))
25+
elifprocess=="Impact":
26+
print("{0} * {1} = {2}".format(number1,number2,Impact))
27+
elifprocess=="Divide":
28+
print("{0} / {1} = {2}".format(number1,number2,Divide))
29+
elifprocess=="Percentage":
30+
print("{0} % {1} = {2}".format(number1,number2,Percentage))
31+
ifcommand=="about":
32+
print(about)
33+
elifcommand=="exit":
34+
exit()
35+
elifcommand=="help":
36+
print("Python calc Help")
37+
print("\n Command: calc , about , help , exit , git-address , web-site , ver , licence")
38+
elifcommand=="git-address":
39+
print("Github Link: https://github.com/LinuxUsersLinuxMint")
40+
elifcommand=="web-site":
41+
print("linuxuserslinuxmint.github.io")
42+
elifcommand=="ver":
43+
print("Version: 0.1.5.5 (Last Updated September 6 , 2023 , 22:22)")
44+
elifcommand=="licence":
45+
print("This Software is protected under the GPL2 license")

‎INSTALL/EN/inputden.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/python3
2+
"Copyright© 2023 LinuxUsersLinuxMint"
3+
"Python Calcutator-inputdtr Tüm Hakları GPL(Genel Kamu Lisansı) altında korunmaktadır."
4+
"Python Calcutator-inputdtr All Rights Reserved under the GPL(General Public License)."
5+
"Bu Yazılımın Bir Kopyası GİTHUB da yayınlanmaktadır Görüntülemek için: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
6+
"A Copy of This Software is published on GITHUB To view: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
7+
8+
command=input('calc> ')
9+
comtxt="calc> "
10+
about="Python Calcutator CLI(Command Line Interface / Komut Satırı Arayüzü) LICENCE=GPL2"
11+
number1=input('{0} Enter The 1st number: '.format(comtxt))
12+
number2=input('{0} Enter The 2st number: '.format(comtxt))
13+
process=input('{0} Enter the Transaction You Want to Perform: '.format(comtxt))
14+
addition=float(number1)+float(number2)
15+
subraction=float(number1)-float(number2)
16+
multiplication=float(number1)*float(number2)
17+
division=float(number1)/float(number2)
18+
Percentage=float(number1)%float(number2)

‎INSTALL/TR/calc

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#!/usr/bin/python3
2+
frominputdtrimport*
3+
"Copyright© 2023 LinuxUsersLinuxMint"
4+
"Python Calcutator Tüm Hakları GPL(Genel Kamu Lisansı) altında korunmaktadır."
5+
"Python Calcutator All Rights Reserved under the GPL(General Public License)."
6+
"Bu Yazılımın Bir Kopyası GİTHUB da yayınlanmaktadır Görüntülemek için: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
7+
"A Copy of This Software is published on GITHUB To view: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
8+
9+
about="Python Hesap Makinesi CLI(Command Line Interface / Komut Satırı Arayüzü) LICENCE=GPL2"
10+
ifcommand=="calc":
11+
print("calc> Girebileceğiniz işlemler: ")
12+
print("top\ncık\n\carp\nbol\nyuzde\nabout")
13+
sayi1 ,sayi2 ,islem
14+
ifislem=="top":
15+
print("{0} + {1} = {2}".format(sayi1,sayi2,top))
16+
elifislem=="cık":
17+
print("{0} - {1} = {2}".format(sayi1,sayi2,cık))
18+
elifislem=="carp":
19+
print("{0} * {1} = {2}".format(sayi1,sayi2,carp))
20+
elifislem=="bol":
21+
print("{0} / {1} = {2}".format(sayi1,sayi2,bol))
22+
elifislem=="yuzde":
23+
print("{0} % {1} = {2}".format(sayi1,sayi2,yuzde))
24+
else:
25+
print("Geçersiz İşlem")
26+
ifcommand=="about":
27+
print(about)
28+
elifcommand=="exit":
29+
exit()
30+
elifcommand=="help":
31+
print("Python calc Help")
32+
print("\n Command: calc , about , help , exit , git-address , web-site , ver , licence")
33+
elifcommand=="git-address":
34+
print("Github Link: https://github.com/LinuxUsersLinuxMint")
35+
elifcommand=="web-site":
36+
print("linuxuserslinuxmint.github.io")
37+
elifcommand=="ver":
38+
print("Sürüm: 0.1.7 (Son Güncellenme Tarihi 8 Eylül , 2023 , 18:08)")
39+
elifcommand=="licence":
40+
print("This Software is protected under the GPL2 license")
41+
else:
42+
print("Geçersiz Komut")

‎INSTALL/TR/inputdtr.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/python3
2+
"Copyright© 2023 LinuxUsersLinuxMint"
3+
"Python Calcutator-inputdtr Tüm Hakları GPL(Genel Kamu Lisansı) altında korunmaktadır."
4+
"Python Calcutator-inputdtr All Rights Reserved under the GPL(General Public License)."
5+
"Bu Yazılımın Bir Kopyası GİTHUB da yayınlanmaktadır Görüntülemek için: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
6+
"A Copy of This Software is published on GITHUB To view: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
7+
8+
command=input('calc> ')
9+
comtxt="calc> "
10+
about="Python Hesap Makinesi CLI(Command Line Interface / Komut Satırı Arayüzü) LICENCE=GPL2"
11+
sayi1=input('{0} 1. sayiyi giriniz: '.format(comtxt))
12+
sayi2=input('{0} 2. sayiyi giriniz: '.format(comtxt))
13+
islem=input('{0} Gerçekleştirmek İstediğiniz İşlemi Giriniz: '.format(comtxt))
14+
top=float(sayi1)+float(sayi2)
15+
cık=float(sayi1)-float(sayi2)
16+
carp=float(sayi1)*float(sayi2)
17+
bol=float(sayi1)/float(sayi2)
18+
yuzde=float(sayi1)%float(sayi2)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp