csc-python-solutions/15/a/1 - Reading the Program.py

8 lines
121 B
Python
Raw Normal View History

2021-02-17 09:08:39 +00:00
def getBASIC():
res = []
x=""
while not "END" in x.split():
x = input()
res.append(x)
return res