Welcome to Westonci.ca, your go-to destination for finding answers to all your questions. Join our expert community today! Experience the ease of finding quick and accurate answers to your questions from professionals on our platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

What's wrong with the coding worksheet syntax and how would you fix it?

#Travies Robinson
#11/23/2020
#Coding Fundamentals : Coding Logic : 03.05 Python Project favorite video game response

def main():

answer = input("Would you like to take a one question survey? (yes or no)")


if(answer == "yes"):


favGame = input("What is your favorite video game?")


print("Your favorite video game is the " + favGame + " amazing i've never played that
before.")


answer = input("What your favorite part of " + favGame + "?")


print("Interesting mabye i should try " + favGame + "."")


Country = input("What country are you living in right now?")


print("You are currently living in " + Country + ".")


Age = input("How old are you?")


print("Your age is " + Age + ".")


print("Thank you for answering the survey and have a great day!")

else:

print("Good-bye")

main()


Sagot :

Answer:

start with what you know

Explanation:

We hope this was helpful. Please come back whenever you need more information or answers to your queries. We hope our answers were useful. Return anytime for more information and answers to any other questions you have. Get the answers you need at Westonci.ca. Stay informed with our latest expert advice.