dat-toanhoc 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 1.0
2
+ Name: dat_toanhoc
3
+ Version: 0.1.0
4
+ Summary: UNKNOWN
5
+ Home-page: UNKNOWN
6
+ Author: UNKNOWN
7
+ Author-email: UNKNOWN
8
+ License: UNKNOWN
9
+ Description: UNKNOWN
10
+ Platform: UNKNOWN
@@ -0,0 +1 @@
1
+ from .toanhoc import *
@@ -0,0 +1,27 @@
1
+ def cong(a, b):
2
+ return a + b
3
+
4
+ def tru(a, b):
5
+ return a - b
6
+
7
+ def nhan(a, b):
8
+ return a * b
9
+
10
+ def chia(a, b):
11
+ return a / b
12
+
13
+ def chu_vi_hcn(dai, rong):
14
+ return (dai + rong) * 2
15
+
16
+ def dien_tich_hcn(dai, rong):
17
+ return dai * rong
18
+
19
+
20
+ # 2 hàm chu vi hình chữ nhật, diện tích hình chữ nhật
21
+
22
+ def chu_vi_hcn(dai, rong):
23
+ return (dai + rong) * 2
24
+
25
+
26
+ def dien_tich_hcn(dai, rong):
27
+ return dai * rong
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 1.0
2
+ Name: dat-toanhoc
3
+ Version: 0.1.0
4
+ Summary: UNKNOWN
5
+ Home-page: UNKNOWN
6
+ Author: UNKNOWN
7
+ Author-email: UNKNOWN
8
+ License: UNKNOWN
9
+ Description: UNKNOWN
10
+ Platform: UNKNOWN
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ dat_toan/__init__.py
3
+ dat_toan/toanhoc.py
4
+ dat_toanhoc.egg-info/PKG-INFO
5
+ dat_toanhoc.egg-info/SOURCES.txt
6
+ dat_toanhoc.egg-info/dependency_links.txt
7
+ dat_toanhoc.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ dat_toan
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,7 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="dat_toanhoc",
5
+ version="0.1.0",
6
+ packages=find_packages()
7
+ )