You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
""" Example Dialog (ExitSelectDialog): "Select the method to exit the program (0: Dialogue and Time entry, 1: Time entry only, 2: Dialogue entry only, 3: Normal exit (old style)): "
59
-
Example Dialog (userTimeDialog): "After how many seconds should the program be closed?: "
60
-
Example Dialog (exitDialog): "Exit program..."
61
-
Example Dialog (errormsgDialog): "Invalid Command!" """
SUGGESTION: If your wishes or needs are different, it is recommended that you change it according to your needs before using the "all_math_operations()" function. """
""" Example Dialog (ExitSelectDialog): "Select the method to exit the program (0: Dialogue and Time entry, 1: Time entry only, 2: Dialogue entry only, 3: Normal exit (old style)): "
39
+
Example Dialog (userTimeDialog): "After how many seconds should the program be closed?: "
40
+
Example Dialog (exitDialog): "Exit program..."
41
+
Example Dialog (errormsgDialog): "Invalid Command!" """
Copy file name to clipboardExpand all lines: README.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,22 @@ TR (Turkish / Türkçe):
6
6
* Kodlama/geliştirme süresini kısaltır işlerinizi daha hızlı halledebilirsiniz.
7
7
* Kodun daha rahat anlaşılmasını sağlar ve daha az satır kod yazmış olursunuz.
8
8
* Sürekli güncel kalır bu sayede sürekli yeni özellikler eklenir ve hata varsa bunlar çözülür.
9
+
* En iyi kullanıcı deneyiminiz için "Basic_Maths" kütüphanesinin her zaman en son sürümünü kullanınız.
9
10
* Geliştiriciler için kolaylık sağlar "Python" ile yazılmış olan programlarda kendi programınız hakkında bilgi verebilmeniz için "program_info()" fonksiyonu bulunur ayrıca "LibAbout()" fonksiyonu ile de "Basic_Maths" kütüphanesi hakkında da bilgi verebilirsiniz.
10
11
12
+
NOT: "Basic_Maths" kütüphanesinin artık geliştirilmesi durdurulmuştur. "Basic_Maths 4.2" sürümü "Basic_Maths" kütüphanesinin son sürümüdür ancak yine de "PyAppDevKit" kütüphanesi güncellendikçe "Basic_Maths" kütüphaneside güncellenecek ve "Basic_Maths" kütüphanesi için küçük değişiklikler gelicektir.
13
+
14
+
NOT2: "Basic_Maths" kütüphanesinin "4.2" sürümüyle "Basic_Maths" kütüphanesindeki tüm sorunlar en iyi kullanıcı deneyimi için çözülmüştür.
15
+
11
16
EN (English / İngilizce):
12
17
13
18
* It simplifies math operations for Python and makes it easy to use.
14
19
* It shortens the coding/development time and you can get your work done faster.
15
20
* It makes the code easier to understand and you write fewer lines of code.
16
21
* It remains constantly updated, so new features are constantly added and if there are errors, they are resolved.
17
-
* Provides convenience for developers. Programs written in "Python" have the "program_info()" function so that you can provide information about your own program, and you can also provide information about the "Basic_Maths" library with the "LibAbout()" function.
22
+
* For your best user experience, always use the latest version of the "Basic_Maths" library.
23
+
* Provides convenience for developers. Programs written in "Python" have the "program_info()" function so that you can provide information about your own program, and you can also provide information about the "Basic_Maths" library with the "LibAbout()" function.
24
+
25
+
NOTE: Development of the "Basic_Maths" library has now been discontinued. "Basic_Maths 4.2" version is the latest version of the "Basic_Maths" library, but as the "PyAppDevKit" library is updated, the "Basic_Maths" library will also be updated and minor changes will come for the "Basic_Maths" library.
26
+
27
+
NOTE2: With the "4.2" version of the "Basic_Maths" library, all problems in the "Basic_Maths" library have been resolved for the best user experience.
Copy file name to clipboardExpand all lines: basic_maths_calc.py
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,8 @@
4
4
It is a example program made with Basic_Maths. It was written to serve as an example of (Basic_Maths) usage.
5
5
Sharing of the file named "basic_maths_calc.py" in posts (blog/post etc. on the internet) has been given permission by @LinuxUsersLinuxMint. """
6
6
7
-
fromBasic_Maths.Basic_mathsimport*
7
+
fromBasic_Maths.Basic_Mathsimport*
8
8
9
9
LibAbout()
10
-
all_math_operations("Select Operations: ","1. Addition","2. Extraction","3. Multiplication","4. Division","5. Percentage","6. FullDivision","7. TakingExponents","8. TakingRoots","9. SquareRoot","Select a transaction?: ","Enter the 1st number: ","Enter the 2nd number: ","Result:","Numbers cannot be zero in division!","Invalid Process!")
10
+
all_math_operations("Select Operations: ","1. Addition","2. Extraction","3. Multiplication","4. Division","5. Percentage","6. FullDivision","7. TakingExponents","8. TakingRoots","9. SquareRoot","Select a transaction?: ","Enter the 1st number: ","Enter the 2nd number: ","Result:","Numbers cannot be zero in division!","Invalid Process!")
0 commit comments