I have the following question. I want to pass the value of a variable (string) from scala to python in databricks. I know I can transfer dataframe information between the two languages using this command:
%scala
scalaDF.registerTempTable("some_table")
%python
spark.table("some_table")
But I can't transfer a string this way, any ideas?