Files
MachineLearningNotebooks/how-to-use-azureml/track-and-monitor-experiments/manage-runs/hello_with_delay.py

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")