import random import time print("-------------------------------------------------------------------") start_game = input("Welcome to the lottery. Do you want to continue? (y/n): ") if start_game.lower() == "y": lottery_numbers = random.sample(range(1, 41), 6) print("The lottery draw is in...") time.sleep(1.2) print("Here is the draw, good luck!:", lottery_numbers) else: print("Womp womp, go away") # Made by Tristan, only for the eyes of Mr, Ronowicz. (And Me :P)