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)): "
34
+
# Example Dialog (userTimeDialog): "After how many seconds should the program be closed?: "
35
+
# Example Dialog (exitDialog): "Exit program..."
36
+
# Example Dialog (errormsgDialog): "Invalid Command!" """
* Oldukça Basit Python için bir Matematik Kütüphanesi
5
-
* Python da Matematik Temel 4 işlemi herhangi bir ek değişken gerektirmeden kullanabilmemizi sağlar
6
-
Örnek:
7
-
#!/usr/bin/python3
8
-
from Basic_Maths import *
9
-
addition(5,5)
10
-
Çıktı: result: 5 + 5 = 10
5
+
* Python için matematik işlemlerini basitleştirir ve kullanımı kolay bir hale getirir.
6
+
* Kodlama/geliştirme süresini kısaltır işlerinizi daha hızlı halledebilirsiniz.
7
+
* Kodun daha rahat anlaşılmasını sağlar ve daha az satır kod yazmış olursunuz.
8
+
* Sürekli güncel kalır bu sayede sürekli yeni özellikler eklenir ve hata varsa bunlar çözülür.
9
+
* 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.
11
10
12
-
* A very simple math library for Python
13
-
* Math Basic 4 in Python allows us to use operations without requiring any additional variables.
14
-
Example:
15
-
#!/usr/bin/python3
16
-
from Basic_Maths import *
17
-
addition(5,5)
18
-
Output: result: 5 + 5 = 10
11
+
EN (English / İngilizce):
19
12
20
-
* By: LinuxUsersLinuxMint
21
-
* Credits: gaurovgiri @gaurovgiri
13
+
* It simplifies math operations for Python and makes it easy to use.
14
+
* It shortens the coding/development time and you can get your work done faster.
15
+
* It makes the code easier to understand and you write fewer lines of code.
16
+
* 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.
0 commit comments