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 Introducing Lists Meet Lists Indexing

Sanjay Devadkar
PLUS
Sanjay Devadkar
Courses Plus Student 1,016 Points

how to slice word from list

suppose i have below list and i want to get word 3, 4th and 7th from the list. how to get that is single line.

example of list:- continents = ['Asia', 'South America', 'North America', 'Africa', 'Europe', 'Antarctica', 'Australia']

2 Answers

Alex Koumparos
seal-mask
.a{fill-rule:evenodd;}techdegree
Alex Koumparos
Python Development Techdegree Student 36,887 Points

Hi Sanjay,

I'm not sure why you'd want to do this, but in your example you could write:

sliced = continents[2:4] + [continents[6]]

Cheers,

Alex

Carlos Alvarez
Carlos Alvarez
2,205 Points

did you ever figure out how to get it?