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 trialgokulprasath k M
1,344 PointsChallenge random item
bummer showing "Try again "
# EXAMPLE
# random_item("Treehouse")
# The randomly selected number is 4.
# The return value would be "h"
import random
def random_item(item):
random _number = random.randint(0, len(item) - 1)
return random_number
2 Answers
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 PointsHi, you should be return the character at position random_number. At the moment you are returning the number. Hint: []
Herman Brummer
6,414 Pointsimport random
list = ["apples", "bananas", "cows", "pears"]
# EXAMPLE
# random_item("Treehouse")
# The randomly selected number is 4.
# The return value would be "h"
def random_item(some_iterable):
index = random.randint(0,len(some_iterable)-1)
return some_iterable[index]
print random_item(list)