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 trialMint Milano
3,114 Pointsi could not get it right! can i get a brief hint regarding the problem
could not find the error
import random
def nchoices(itr,n):
count=0
random_list=[]
while n>=count:
temp=random.choice(itr)
random_list.append(temp)
count += 1
return random_list
3 Answers
AJ Longstreet
Treehouse Project ReviewerI agree with Steve and I would add that you should manage the readability a bit better. It's good to keep your code neat and tidy while learning so it becomes second nature later on.
import random
def nchoices( itr, n):
count = 0
random_list = []
while n > count:
temp=random.choice(itr)
random_list.append(temp)
count += 1
return random_list
Steven Parker
231,236 PointsI see two issues:
- The
return
statement should come after the loop (it's currently indented to place it inside the loop) - The
while
limit should ben > count
(usingn >= count
creates one too many results)
Mint Milano
3,114 Points[solved] thanks again for helping me with the concepts
Mint Milano
3,114 Points[solved]Thanks for the extra info sir.