generate functionWed, 30 Nov 2022

create a script that will ask for first and last name, then print out the two

def get_user_input(): first_name = input('What is your first name? ') last_name = input('What is your last name? ') return first_name, last_name get_user_input()

Questions about programming?Chat with your personal AI assistant