
Ultimate access to all questions.
How should the date Python variable be defined in the notebook to dynamically load data from the specified path using the date parameter passed by the upstream system via the Databricks Jobs API?
A
date = spark.conf.get("date")
B
input_dict = input() date= input_dict["date"]
C
import sys date = sys.argv[1]
D
date = dbutils.notebooks.getParam("date")
E
dbutils.widgets.text("date", "null") date = dbutils.widgets.get("date")