mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-20 17:45:10 -05:00
9 lines
243 B
Python
9 lines
243 B
Python
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License
|
|
|
|
# Very simple script to demonstrate run in environment
|
|
# Print message passed in as environment variable
|
|
import os
|
|
|
|
print(os.environ.get("MESSAGE"))
|