Ask the user for their name
name = input("Please enter your name: ")
Ask the user for their age
age = input("Please enter your age: ")
Ask the user for their location
location = input("Please enter your location: ")
Print a personalized message
print(f"Hello {name}, you are {age} years old and live in {location}.")
Ask the user for their name
name = input("Please enter your name: ")
Ask the user for their age
age = input("Please enter your age: ")
Ask the user for their location
location = input("Please enter your location: ")
Print a personalized message
print(f"Hello {name}, you are {age} years old and live in {location}.")