from time import gmtime, strftime time = strftime("%Y-%m-%d %H:%M:%S", gmtime()) print("Hello from Python!") print("Current time: "+time)