Here's what I have so far
import csv
a= []
with open (r"C:\Users\packe\Downloads\transactions.csv") as f:
reader = csv.reader(f)
for column in reader:
b=int(column[0])
a. append(b)
transactions.csv contains these integers[25, 2, 8, -5, 4, 4, 3, 2, -2, 3] 25 being the first integer.