Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Data Science Basics Describing Data Loading Data

Task 1 Task2

Task 2 says Task 1 is no longer passing, even though nothing has been altered to the input from Task 1.

loadData.py
import csv
def open_with_csv('file_name'):
    data = []
    return data

1 Answer

AJ Salmon
AJ Salmon
5,675 Points

Sometimes when that error message pops up, it's actually for a different reason, I'm not quite sure why. BUT, I do see the issue. It isn't proper syntax to have an actual string in the parameter of the argument, the argument in the parameter is just a place holder for whatever string is passed to it later. Get rid of the parentheses and you'll be good to go :)