From: CptG9000 <71446401+CptG9000@users.noreply.github.com> Date: Thu, 2 Dec 2021 17:34:25 +0000 (+0000) Subject: Create ConvertToArray.py X-Git-Url: https://fbox.kageds.com/gitweb/adventofcode.git/commitdiff_plain/e1596019116a972f09a4986a72f8a8964e89d955 Create ConvertToArray.py --- 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