Welcome to Westonci.ca, your one-stop destination for finding answers to all your questions. Join our expert community now! Get immediate and reliable answers to your questions from a community of experienced experts on our platform. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

Ask the user to input a country name. Display the output the message “I
would love to go to [country]”


Sagot :

Answer:

Explanation:

The following code is written in Python, it asks the user for an input saves it to a variable called country, and then prints out the sentence example in the question using the user's input. The output can be seen in the picture attached below

country = input("input country")

print('I would love to go to ' + country)

View image sandlee09