Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Selvaraj Rajabhathor
Courses Plus Student 460 Pointsreturn randint quiz is wrong
the answer doesnt seem to work
import random
def random_num(i)
return randint(1,i)
2 Answers

cm21
150,854 PointsHi Selvaraj,
1) We need to include a colon at the end of the function header to let the compiler know that that's the end of the header. 2) You do want to call the randit function, but you'll want to put the class name and a period at the beginning of your call, so that the compiler knows what class the randint method belongs to (so that it can find it.)
import random
def random_num(i):
return random.randint(1,i)
Hope this helps.

Selvaraj Rajabhathor
Courses Plus Student 460 PointsThanks a ton!