From 80dcae769daca08053cdc7c81e3eb1c42230f3b0 Mon Sep 17 00:00:00 2001
From: BellCodeEditor <bellcode_dev@bell.ai>
Date: Sat, 4 Sep 2021 16:58:24 +0800
Subject: [PATCH] save project
---
 func.py | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 func.py
diff --git a/func.py b/func.py
new file mode 100644
index 0000000..584fa5f
--- /dev/null
+++ b/func.py
@@ -0,0 +1,14 @@
+def jakso():
+    total = []
+    while True:
+        try:
+            unit = int(input("请输入:"))
+        except:
+            print("请输入数字")
+        else:
+            if unit== '-1':
+                break
+            else:
+                total.append(unit)
+    print(total)
+jakso()
\ No newline at end of file
--
libgit2 0.25.0