Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Alejandro Byrne
2,562 PointsNeed help on this challenge. Don't quite understand what to do for the last step.
How do I do the last two steps? I don't get what I'm supposed to do.... or how to do it....
# EXAMPLE
# random_item("Treehouse")
# The randomly selected number is 4.
# The return value would be "h"
import random
def random_item(iterable):
random.randint(0, len(iterable) - 1)
return(???)
2 Answers

andren
28,538 PointsFirst since you need to use the random number generated you actually have to store it in a variable, currently you just generate a number but then do nothing with the result. Then you need to pull an item/character out of the iterable you get using the random number as the index. You can do this by using square bracket notation which you should have learned in an earlier part of this course.
As a reminder when using bracket notation to pull out items you just place brackets after the variable name and then the index you want to pull out. So to pull out the first item you would use iterable[0]
for example.

Alexander Davison
65,456 PointsDon't give up! You are doing very well. You already got a random index all set up!
You just have to use that index to get the item in the iterable.
Here's how to get a specific character from a string using an index:
"Treehouse"[2] # Returns "e"
I would recommend to try to do this challenge on your own, but if you keep failing I'd be happy to help more
Good luck! I hope this helps out. ~Alex
Alexander Davison
65,456 PointsAlexander Davison
65,456 PointsDarn, you type faster than me XD
Or is it that you spotted this question first?
Alejandro Byrne
2,562 PointsAlejandro Byrne
2,562 PointsThanks, it worked! Yeah, I kinda thought I would have to store it and then do something, got a little confused. Thanks for the help too, Alex.