Python-Assignment user_input.py def display_info(name, age, location): print(f"• Hello, {name}") print(f"•{age}") print(f"•{location}") Example usage name = "what is your name?" age = " How old are you ?" location = " Where do you stay?" display_info(name, age, location)