Skip to content

Instantly share code, notes, and snippets.

@krokrob
Created September 6, 2020 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krokrob/a1c5c54c584bd54326149bbbcb4560f0 to your computer and use it in GitHub Desktop.
Save krokrob/a1c5c54c584bd54326149bbbcb4560f0 to your computer and use it in GitHub Desktop.
from time import sleep
class Trainer:
def run(self):
print("Training launched.")
print("Training running...")
sleep(2)
print("Taining finished.")
if __name__ == '__main__':
Trainer().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment