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 Introduction to pandas Exploring pandas Selecting Data

How can I get rid of the []

file_name = 'employee_handbook.csv'
cid = 2603704587

with open(file_name, newline = '') as handbook:
    emp_handbook = pd.DataFrame(pd.read_csv(file_name))
    row_number = emp_handbook[emp_handbook['CID'] == cid].index.values
    name = emp_handbook.iloc[row_number,[1]].values
print(name)

output:

[['Jun Cheng']]

How can I get 'Jun Cheng' instead of '[[Jun Cheng]]'

Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

If you are certain that only one row and only one data item will be assigned to name, perhaps print(name[0][0]) would work for you.

1 Answer

Hi. Jun!

That's just the way Python returns the CSV file row data (like a Python list).

To get ride of them, you could use something like this:

name = name.replace("[", "")
name = name.replace("]", "")
print(name)

More info/details:

https://stackoverflow.com/questions/41486716/removing-square-brackets-and-quotation-marks-which-are-added-to-rows-in-a-csv-fi

I hope that helps.

Stay safe and happy coding!