You have the following Azure subscriptions and Azure Machine Learning service workspaces: * **Subscription 1:** * Workspace: `ml-prod` in the `eastus` region. * Workspace: `ml-project` in the `westus` region. * **Subscription 2:** * Workspace: `ml-dev` in the `westus` region. 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='sub1', resource_group='rg1') ``` Does the solution meet the goal? | Microsoft Certified Azure Data Scientist Associate - DP-100 Quiz - LeetQuiz