Screen Link: https://app.dataquest.io/m/422/lists-and-for-loops/10/reading-csv-files
Your Code:’’'from csv import reader
opened_file = open(‘AppleStore.csv’)
read_file = reader(opened_file)
apps_data = list(read_file)
opened_file.close()
print(len(apps_data))’’’
What I expected to happen: to display length of read_file
What actually happened: ```TypeErrorTraceback (most recent call last)
in ()
5 opened_file.close()
6
----> 7 print(len(apps_data))
TypeError: ‘int’ object is not callable’’’
Other details: I continue to get the above error. This code is the exact same as in the answer provided. I even copy and pasted the answer provided under “get help” and I get the same error.