Input() functionThe input() function takes one argument: the prompt that we want to display to the user, so they know what kind of information to enter Use CTRL + '(backtick) to switch from editor pane to terminal paneprompt = "If you share your name, we can personalize the messages you see."prompt += "\nWhat is your first name? "name = input(prompt)print(f"\nHello, {name}!")Multiline string for..