Building a Random Story
import random
characters = ["wizard", "pirate", "alien"]
places = ["castle", "spaceship", "island"]
items = ["sword", "laser", "map"]
story = f"The {random.choice(characters)} found a {random.choice(items)} in the {random.choice(places)}."
print(story)