I've a question how should I download a .csv files from Auzre data lake then make some calculation and save this in .csv again.
I know that for downloading .csv I can use: data=pd.read_csv('example.csv') #example
new_data=data//2+data #calculation in databricks notebook
and now the question is how to save new_data
in .csv format in Azure Data lake with the name: example_calulated.csv