You have the following Azure subscriptions and Azure Machine Learning service workspaces: * Subscription ID: `8a12e3a1-1c78-4b66-8b4e-3e01219a2a8c` * Workspace Name: `ml-project` * Resource Group: `rg-ml-projects` 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='8a12e3a1-1c78-4b66-8b4e-3e01219a2a8c', resource_group='rg-ml-projects') ``` Does the solution meet the goal? | Microsoft Certified Azure Data Scientist Associate - DP-100 Quiz - LeetQuiz