diff --git a/Gareth solution Python/ConvertToArray.py b/Gareth solution Python/ConvertToArray.py new file mode 100644 index 0000000..0b48b1f --- /dev/null +++ b/Gareth solution Python/ConvertToArray.py @@ -0,0 +1,7 @@ +numbers = [] +while True: + a = input("") + if a == "a": + break + numbers.append(a) +print(numbers) \ No newline at end of file