From 983368a57991cf0325cfb8adbc05a272b77ebb64 Mon Sep 17 00:00:00 2001 From: Lukas Baumann Date: Wed, 17 Feb 2021 10:08:39 +0100 Subject: [PATCH] Create a1.py --- Lukas/15/a1.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Lukas/15/a1.py diff --git a/Lukas/15/a1.py b/Lukas/15/a1.py new file mode 100644 index 0000000..c9af8e9 --- /dev/null +++ b/Lukas/15/a1.py @@ -0,0 +1,7 @@ +def getBASIC(): + res = [] + x="" + while not "END" in x.split(): + x = input() + res.append(x) + return res