[Solved]Python Trying Write Code Applied Regular Epressions Information Provide List People Member Q37104228
In Python, I am trying to write a code of applied regularepressions that from the below information will provide a list ofpeople who have a member date from 2005 – 2010.
Name,Gender,SSN,Member Date,Phone,State,Zip,Email,CreditCard,Credit Card_Number,Credit Card Exp,Gender,Favorite RadioStation,Purchases Past 30 Days,Spent Past 30 Days,P
import csv
import re
data = []
with open(‘customerData.csv’) as csvfile:
reader = csv.DictReader(csvfile)
for row in reader:
data.append(row)
Expert Answer
Answer to In Python, I am trying to write a code of applied regular epressions that from the below information will provide a list… . . .
OR

