We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e08920 commit 280a12bCopy full SHA for 280a12b
3 files changed
.gitignore
@@ -14,8 +14,6 @@ dist/
14
downloads/
15
eggs/
16
.eggs/
17
-lib/
18
-lib64/
19
parts/
20
sdist/
21
var/
source-code/pyinstaller/src/lib/__init__.py
source-code/pyinstaller/src/lib/funcs.py
@@ -0,0 +1,10 @@
1
+import pandas as pd
2
+
3
4
+def sum_columns(input_file):
5
+ df = pd.read_csv(input_file)
6
+ print(df.sum())
7
8
+def prod_columns(input_file):
9
10
+ print(df.prod())
0 commit comments