Python script

# print_that.py
import csv

with open("/scripts/random_update.csv") as f:
  reader = csv.reader(f)
  for row in reader:
    print(row)