Create ConvertToArray.py
This commit is contained in:
7
Gareth solution Python/ConvertToArray.py
Normal file
7
Gareth solution Python/ConvertToArray.py
Normal file
@@ -0,0 +1,7 @@
|
||||
numbers = []
|
||||
while True:
|
||||
a = input("")
|
||||
if a == "a":
|
||||
break
|
||||
numbers.append(a)
|
||||
print(numbers)
|
||||
Reference in New Issue
Block a user