# Marilyn.py Copyright (c) Kari Laitinen # http://www.naturalprogramming.com # 2006-05-27 File created. # 2022-12-16 Converted to Python 3. # Comparing string objects with the built-in function cmp() name_to_be_known = "Marilyn Monroe" print( "\n Who played the main role in the movies:" \ "\n\n \"How To Marry a Millionaire\" (1953)" \ "\n \"The Seven Year Itch\" (1955)" \ "\n \"The Misfits\" (1961) \n\n ? ", end="" ) name_from_keyboard = input() if name_from_keyboard == name_to_be_known : print( "\n Yes, that is correct." ) else : print( "\n No, it\'s Marilyn Monroe." )