Create a1.py

This commit is contained in:
Lukas Baumann 2021-02-17 10:08:39 +01:00 committed by GitHub
parent 8cb8171af0
commit 983368a579
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
Lukas/15/a1.py Normal file
View File

@ -0,0 +1,7 @@
def getBASIC():
res = []
x=""
while not "END" in x.split():
x = input()
res.append(x)
return res