import
csv
with
open
(
'data.csv'
,
'r'
) as
file
:
reader
=
csv.reader(
)
for
row
in
reader:
print
(row)