This repository was archived by the owner on Oct 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +68
-2
lines changed Expand file tree Collapse file tree 3 files changed +68
-2
lines changed Original file line number Diff line number Diff line change 66
77Nasıl Kullanılır: herhangi bir python dosyanıza girip Kodun İlk satırına "from inputd import * " ekleyin
88NOT: inputd modulunun çalışma ortamının ve klasörünün içinde bulunması gerekir.
9+ NOT2: inputd modulunu kullanmadan önce kendinize göre özelleştirmenizi ve kodlarda değişiklik yapmanızı öneririz.
10+
11+ * Hangi değişkenleri içerdiğini görmek için inputd.py a veya input.txt dosyasına bakabilirsiniz.
912
1013* Python inputd module.
1114"Pre-creates variables created for Python"
1215"Python also provides convenience while working."
1316
1417How to Use: go into any of your python files and add "from inputd import * " to First line of Code
15- NOTE: The inputd module must be located inside the runtime and its folder.
18+ NOTE: The inputd module must be located inside the runtime and its folder.
19+ NOTE2: Before using the inputd module, we recommend that you customize it and make changes to the codes.
20+
21+ * You can look at inputd.py or input.txt to see what variables it contains.
Original file line number Diff line number Diff line change 1+ sayi1
2+ sayi2
3+ sayi3
4+ sayi4
5+ sayi5
6+ sayi6
7+ sayi7
8+ sayi8
9+ sayi9
10+ sayi10
11+
12+ number1
13+ number2
14+ number3
15+ number4
16+ number5
17+ number6
18+ number7
19+ number8
20+ number9
21+ number10
22+
23+ top
24+ cık
25+ carp
26+ bol
27+ yuzde
28+
29+ islem
30+
31+ collect
32+ Extraction
33+ Impact
34+ Divide
35+ Percentage
36+
37+ process
Original file line number Diff line number Diff line change 11#!/usr/bin/python3
2+ "Copyright© 2023 LinuxUsersLinuxMint"
3+ "Python-Module Tüm Hakları GPL(Genel Kamu Lisansı) altında korunmaktadır."
4+ "Python-Module 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"
27
38# Sayi Değişkenleri / Number inputs
49
2227number7 = input ('Enter the Seventh Number: ' )
2328number8 = input ('Enter the Eighth Number: ' )
2429number9 = input ('Enter the Ninth Number: ' )
25- number10 = input ('Enter the tenth number: ' )
30+ number10 = input ('Enter the tenth number: ' )
31+
32+ # Hesap Makinesi Değişkenleri / Calcutator inputs
33+
34+ top = float (sayi1 )+ float (sayi2 ) # Not Bu sadece bir değişkendir ve sayi1 ve sayi2 yi kullanır isterseniz bunu değiştirebilirsiniz.
35+ cık = float (sayi1 )- float (sayi2 )
36+ carp = float (sayi1 )* float (sayi2 )
37+ bol = float (sayi1 )/ float (sayi2 )
38+ yuzde = float (sayi1 )% float (sayi2 )
39+
40+ islem = input ('Gerçekleştirmek İstediğiniz İşlemi Giriniz: ' )
41+
42+ collect = float (number1 )+ float (number2 )
43+ Extraction = float (number1 )- float (number2 )
44+ Impact = float (number1 )* float (number2 )
45+ Divide = float (number1 )/ float (number2 )
46+ Percentage = float (number1 )% float (number2 )
47+
48+ process = input ('Enter the action you want to perform: ' )
You can’t perform that action at this time.
0 commit comments