import random
min = 1
max = 6
roll_again = "yes"
while roll_again == "yes" or roll_again == "y":
print ("Rolling the dices...")
print ("The values are....")
print random.randint(min, max)
print random.randint(min, max)
roll_again = raw_input("Roll the dices again?")
and this is the error
File "main.py", line 10
print random.randint(min, max)
^
SyntaxError: invalid syntax
Where am I going wrong and how do I fix ?