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 (Retired) Dungeon Game Random Choices

i dont understand the quetion..

Hi, Itried to understand the task and I realize that my code will be an invite loop but before fixing this, I am not sure what to return with the code and what it means by 'n'? Thank's before and after

choices.py
import random
def nchoices(iterr, inter):
  iterr=tuple(iterr)
  getrand=random.choice(iterr)
  while True:
    if type(getrand)!=int:
        getrand=random.choice(iterr)
    else:
      return getrand

1 Answer

Piyut, yes, the instructions can be confusing at times. Here's one way to do it:

import random

def nchoices(my_list, num):
  output_list = []
  for i in range(num):
    output_list.append(random.choice(my_list))
  return output_list

You create a blank list inside the function and then use the loop to fill it.

oh I get it.. thank you jcorum :)