At Westonci.ca, we provide reliable answers to your questions from a community of experts. Start exploring today! Experience the ease of finding reliable answers to your questions from a vast community of knowledgeable experts. Join our platform to connect with experts ready to provide precise answers to your questions in different areas.

Task 2
Rearrange the lines in the Python program below, so that you have a runnable program
that holds a meaningful interaction with the user.
2
1 print("And where do you live", name)
print("I've never been to", location)
name = input()
3
4 print("What is your name?")
5 location = input()
Write your rearranged program below:


Sagot :

Answer:

If the following answer is helpful please mark as brainliest. This is the answer:

Explanation:

print("What is your name?")

name=input()

print("And where do you live", name)

location=input()

print("I've never been to", location)