This program is used to find the current time of location of a countries
time and then get the time of a location of your choosing.I need to know how to get the time from other countries such as China or the ones in the code.
#Eric's Amazing Trip around the world in 80 days time converter#
import time
print("Welcome to Eric's Amazing Trip around the world in 80 days time converter")
print("This program helps the user change the time on the watch as they travel")
cur=input("First enter the current country")
#Displays the country of your choosing time#
print("The current time in " + cur)
#Displays the current time in the country#
print("Current time is " + time.asctime())
print()
nex=input("Next the country your travelng to")
#This display the time of whichever country you choose#
if cur=="Italy" or "italy":
print("The current time in " + nex + "is")
elif cur=="Egypt" or "Egypt":
print("The current time in " + nex + "is")
elif cur=="Paris" or "Paris ":
print("The current time in " + nex + "is")
elif cur=="China" or "china":
print("The current time in " + nex + "is")
elif cur=="India" or "india":
print("The current time in" + nex + "is")
elif cur=="Singapore" or "Singaspore":
print("The current time in " + nex + "is")