Files
MachineLearningNotebooks/how-to-use-azureml/training/manage-runs/hello_with_delay.py
Roope Astala 556a41e223 version 1.0.21
2019-03-25 15:06:08 -04:00

9 lines
164 B
Python

# Copyright (c) Microsoft. All rights reserved.
# Licensed under the MIT license.
import time
print("Wait for 10 seconds..")
time.sleep(10)
print("Done waiting")