read csv python dictionary dict.read
import csv
with open('names.csv', newline='', encoding='utf-8') as csvfile:
reader = csv.DictReader(csvfile)
for row in reader:
print(
row['first_name'],
row['last_name']
)

SNAPPED!

SNAPPED!
Comments
Post a Comment