# Mapthings import time import random # Varables Plr_Position = "Hall" Map_Positions = ["Hall", "Foyer", "Bedroom", "Art Gallery", "Kitchen", "Libary", "Cellar", "Garden", "Dining Hall", "Great Hall"] Drac_Start_Positions = ["Bedroom", "Art Gallery", "Kitchen", "Libary", "Cellar", "Garden", "Dining Hall", "Great Hall"] DRAC_Pos = random.choice(Drac_Start_Positions) print("The players positon is in the [{}]".format(Plr_Position)) print("Dracula's positon is in the [{}]".format(DRAC_Pos))