import time import sys print("-------------------------------------") print("Love match!") name1 = str(input("What is the first person's name: ")) length1 = len(name1) name2 = str(input("What is the second person's name: ")) length2 = len(name2) match = (length1 * length2) % 11 sleep = time.sleep print("Loading:") animation = ["[# ]", "[## ]", "[### ]", "[#### ]", "[##### ]" "[###### ]", "[####### ]", "[########]"] for i in range(len(animation)): time.sleep(0.2) sys.stdout.write("\r" + animation[i % len(animation)]) sys.stdout.flush() print("\n") if match == (0): print("NEVER GET TOGETHER EVER") if match == (1): print("NEVER GET TOGETHER EVER") if match == (2): print("NEVER GET TOGETHER EVER") if match == (3): print("You really shouldn't match.") if match == (4): print("You really shouldn't match.") if match == (5): print("You really shouldn't match.") if match == (6): print("This right here is a good match!") if match == (7): print("This right here is a good match!") if match == (8): print("This right here is a good match!") if match == (9): print("THIS IS A PERFECT MATCH!") if match == (10): print("THIS IS A PERFECT MATCH!")