# inputs for lengths name1 = input( "What is the first person's name: " ) length1 = len( name1 ) name2 = input( "What is the first person's name: " ) length2 = len( name2 ) # equation for lovematch score Love_match = ( length1 * length2 ) % 11 if Love_match <= 2: print("You are a terrible match") elif Love_match <= 5: print("You probably shouldn't bother") elif Love_match <= 8: print("You are a good match") else: print("You are a perfect match!") #love bar refresh Love_bar_full = 0 Love_bar_empty = 10 #lovebar stuff Love_bar_full = Love_match Love_bar_empty = Love_bar_empty - Love_bar_full print("[" + "#" * Love_bar_full + "-" * Love_bar_empty + "]")