
xxxxxxxxxx
#Guess the country - www.101computing.net/guess-the-country/
print("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~")
print("~ Guess the country ~")
print("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~")
print("")
country="France"
cluesList=[]
cluesList.append("This country is in Europe.")
cluesList.append("Its flag has three colours.")
cluesList.append("It has a coast line.")
cluesList.append("It has a shared border with Italy.")
cluesList.append("Its capital is Paris.")
#printing instructions
print("The computer has picked up a country and will give you clues to help you identify this country.")
print("Try to guess the name of this country using as few clues as possible")
print("")
#continue the code from here.
task_alt