cacmath 1.0.0__py3-none-any.whl

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.
cacmath/__init__.py ADDED
@@ -0,0 +1,7 @@
1
+ def caculate(expr):
2
+ parts = expr.split("+")
3
+ one = int(parts[0].strip())
4
+ two = int(parts[1].strip())
5
+ result = one + two
6
+ print(result)
7
+ return result
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: cacmath
3
+ Version: 1.0.0
4
+ Summary: YAA caculator
5
+ Description-Content-Type: text/markdown
6
+ Dynamic: description
7
+ Dynamic: description-content-type
8
+ Dynamic: summary
9
+
10
+ YAA caculator
11
+
12
+ addition only
13
+
14
+ ex. caculator(1 + 1)
@@ -0,0 +1,5 @@
1
+ cacmath/__init__.py,sha256=MnOne8NVr1Lyqpsy7bz2aCDsLPt7nieXzMdyVyx6QZE,178
2
+ cacmath-1.0.0.dist-info/METADATA,sha256=fICg0kpbaQDij-cZiMqfiqE6KpnP6wUveWq2GcZ6M9E,252
3
+ cacmath-1.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
4
+ cacmath-1.0.0.dist-info/top_level.txt,sha256=mMXfV8Yr6vUHP7QWeh6bww6NHYnoOBHS8I5gyYYKP2w,8
5
+ cacmath-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ cacmath