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 trialMichael LaCroix
5,828 PointsIs something wrong with my code or the Python Shell?
I start with this:
import random
#generate a ran num between 1-10
secret_num = random.randint(1, 10)
while True:
#get a num guess from player
guess = int(input("Guess a number between 1 and 10: "))
#compare guess to secret num
if guess == secret_num:
print("You got it! My number was {}".format(secret_num))
break
else:
print("That's not it!")
and get this: "AttributeError: module 'random' has no attribute 'randint'
I started over from scratch with this:
import random
And get the EXACT same error. How on earth does it know something I haven't even written yet? And yes - I triple checked that I was running separate programs for each of these and not accidentally running the same one,
Geovany Martinez
7,727 PointsHello,
Are you using the launcher provided by the site or your terminal?
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsIt is unclear why this would happen. If you truly restart a Python shell then type
import random
. It should parse the code in the modulerandom
cleanly. Can you cut-and-paste the contents of the shell window into a comment (including the OS shell prompt showing the start of the Python shell)?