Created
September 6, 2020 17:33
-
-
Save krokrob/a1c5c54c584bd54326149bbbcb4560f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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