Hey, I'm new to Python and wondering about the following bit of code. It tells me that the module random has no attribute randint. I've looked at the documentation and such and I think I'm doing it correctly, but obviously something's wrong. Any ideas? Thanks!
import random
int1=random.randint(1, 6)
int2=random.randint(1, 6)
print "Die one was "+str(int1)
print "Die two was "+str(int2)
print "Your total was "+str(int1+int2)