-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f119e6c
commit b90ebc5
Showing
5 changed files
with
54 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,17 @@ | ||
# Basic_Maths | ||
|
||
TR (Turkish / Türkçe): | ||
|
||
* Oldukça Basit Python için bir Matematik Kütüphanesi | ||
* Python da Matematik Temel 4 işlemi herhangi bir ek değişken gerektirmeden kullanabilmemizi sağlar | ||
Örnek: | ||
#!/usr/bin/python3 | ||
from Basic_Maths import * | ||
addition(5,5) | ||
Çıktı: result: 5 + 5 = 10 | ||
* Python için matematik işlemlerini basitleştirir ve kullanımı kolay bir hale getirir. | ||
* Kodlama/geliştirme süresini kısaltır işlerinizi daha hızlı halledebilirsiniz. | ||
* Kodun daha rahat anlaşılmasını sağlar ve daha az satır kod yazmış olursunuz. | ||
* Sürekli güncel kalır bu sayede sürekli yeni özellikler eklenir ve hata varsa bunlar çözülür. | ||
* 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. | ||
|
||
* A very simple math library for Python | ||
* Math Basic 4 in Python allows us to use operations without requiring any additional variables. | ||
Example: | ||
#!/usr/bin/python3 | ||
from Basic_Maths import * | ||
addition(5,5) | ||
Output: result: 5 + 5 = 10 | ||
EN (English / İngilizce): | ||
|
||
* By: LinuxUsersLinuxMint | ||
* Credits: gaurovgiri @gaurovgiri | ||
* It simplifies math operations for Python and makes it easy to use. | ||
* It shortens the coding/development time and you can get your work done faster. | ||
* It makes the code easier to understand and you write fewer lines of code. | ||
* It remains constantly updated, so new features are constantly added and if there are errors, they are resolved. | ||
* 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. |