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) Tuples Packing

uday kiran
uday kiran
3,222 Points

How to do it with slice

How to do it with slice

2 Answers

Steven Parker
Steven Parker
230,274 Points

You might start with the first argument (index 0), and then use a slice ("[1:]") to iterate through the remaining arguments and multiply by each.

But that's just one approach to a solution, that's why the hint said it might come in handy.

uday kiran
uday kiran
3,222 Points

can you share the code how to solve with slice

Steven Parker
Steven Parker
230,274 Points

I didn't solve it that way myself, I was just explaining how you could solve it with a slice.

Did you solve this already another way? Show me your code and I'll show you how to convert it to use the slice.