Python Project: Dice Roller

import random

while True:
  roll = input("Do you want to roll two dice? (y/n)")

  if roll.lower() == "y":
    dice_one = random.randint(1,6)
    print("Dice one: {}".format(dice_one))

    dice_two = random.randint(1,6)
    print("Dice two: {}".format(dice_two))

  else: 
    print("Thanks for playing.")
    break