You have the following Azure subscriptions and Azure Machine Learning service workspaces: * Subscription ID: `1234abcd-12ab-12ab-12ab-123456abcdef` * Workspace Name: `ml-project` * Resource Group: `rg-machine-learning` You need to obtain a reference to the `ml-project` workspace. Solution: Run the following Python code: ```python from azureml.core import Workspace ws = Workspace.get(name='ml-project', subscription_id='1234abcd-12ab-12ab-12ab-123456abcdef', resource_group='rg-machine-learning') ``` Does the solution meet the goal? | Microsoft Certified Azure Data Scientist Associate - DP-100 Quiz - LeetQuiz