You use the following code to define the steps for a pipeline: ```python from azureml.core import Workspace, Experiment, Run from azureml.pipeline.core import Pipeline from azureml.pipeline.steps import PythonScriptStep ws = Workspace.from_config() # ... step1 = PythonScriptStep(name="step1", ...) step2 = PythonScriptStep(name="step2", ...) pipeline_steps = [step1, step2] ``` You need to add code to run the steps. Which two code segments can you use to achieve this goal? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. | Microsoft Certified Azure Data Scientist Associate - DP-100 Quiz - LeetQuiz