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

Laknath Gunathilake
Laknath Gunathilake
1,860 Points

can't seem to put it all together

I understand the separate parts of the question, but I feel like I can't put it altogether

item.py
# EXAMPLE
import random 

def random_item():
  for item in items:
  number=random.randint(0,len(item)-(1))
  item[number]
  return
# random_item("Treehouse")
# The randomly selected number is 4.
# The return value would be "h"

1 Answer

Steven Parker
Steven Parker
231,007 Points

You're close, seems like you got the most important parts already.

:point_right: Here's a few hints:

  • Your function needs to take an argument. Put its name inside the ()'s in the def.
  • You won't need a loop ("for").
  • Put the value you want to return after the word "return" (instead of on a line by itself).

I'll bet you can get it now.