-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
Description
Synopsis
The idea of this is to go through 4 phases where you create increasingly more difficult CSV files to parse
Examples
First input will be Easy_CSV.csv that will require
import csv
with open('Easy_CSV.csv') as csv_file:
csv_reader = csv.reader(csv_file, delimiter=',')
for row in csv_reader:
print(row)
then it will show names and integers from the CSV files
second Input will be Intermediate.csv that will require more effort
then a hard.csv then a hellmode.csv