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 Python Basics (2015) Python Data Types Specific Index value

What am i doing wrong?

Help please

index.py
var_one = ["a,b,c,d,e,t"]

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

You've created a list with one item, a string, at index 0. Instead divide the string into individual letters.

What do you mean

Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

For example, use ["a", "b", "c"] instead of ["a,b,c"]

Oh ok i get it i made it all one string instead of multiple strings Thanks!