import random name1 = input("What is the first person's name: ") length1 = len(name1) outcomes = [ "You are a terrible match", "You probably shouldn't bother", "You are a good match", "You are a perfect match!" ] selected_outcome = random.choice(outcomes) print(selected_outcome)