University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pythonScript.py 140B

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