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 Collections (2016, retired 2019) Slices Deleting slices

divyam pandey
divyam pandey
2,388 Points

In a slice what are the different parts of the syntax which all start with the letter 'st' ['start: ? : step]

It is a Quiz Question. Slices are used with strings or lists (iterables). In the slice syntax what are the different parts of the syntax. [ : : ] which all start with 'st' I got two correct [start:?: step] but what would be middle one?

1 Answer

This is discussed in the following video @ 1:34.

Three pieces to a slice, start, stop, step.