import csv
def read_csv(filename):
"""
Read a csv file
"""
with open(filename, 'r') as csvfile:
reader = csv.reader(csvfile)
for row in reader:
print(row)
def main():
"""
Main function
"""
read_csv('data.csv')
if __name__ == '__main__':
main()
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)