how to use csv read function in python code example
Example 1: python write csv line by line
with open('csvfile.csv','wb') as file:
for line in text:
file.write(line)
file.write('\n')
Example 2: csv reader python
import csv
with open('employee_birthday.txt', mode='r') as csv_file:
csv_reader = csv.DictReader(csv_file)
line_count = 0
for row in csv_reader:
if line_count == 0:
print(f'Column names are {", ".join(row)}')
line_count += 1
print(f'\t{row["name"]} works in the {row["department"]} department, and was born in {row["birthday month"]}.')
line_count += 1
print(f'Processed {line_count} lines.')