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 Basics (2015) Letter Game App Random Item

I am not understand the directions

Please help me better under stand the directions

item.py
import random

def random_item("Treehouse"):
     random.randict(0 < 4) == secret_number
        return secret_number - 1


# random_item("Treehouse")
# The randomly selected number is 4.
# The return value would be "h"

1 Answer

Steven Parker
Steven Parker
230,995 Points

The example in comments only shows you how the function might be called, it's not how it would be defined. In particular, the parameters in a definition are never enclosed in quotes.

Then, the purpose of the function is not to return a random number. The random number will be used as an index to select an item in the argument, and that is what will be returned. So if you pass a word as the argument, what the function would return could be any single letter taken out of the word.