Welcome to Westonci.ca, where your questions are met with accurate answers from a community of experts and enthusiasts. Explore a wealth of knowledge from professionals across various disciplines on our comprehensive Q&A platform. Explore comprehensive solutions to your questions from knowledgeable professionals across various fields on our platform.

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)