i have string name Path:
Path = 's3://ihsm-dl-automotive-dev/auto_target_marketing_data/Testing-sandbox/PP_PROCESS_TESTING_DEEPAK/Buick_Encore_studyfile'
i want to create two string and store in two different variables as given below;
bucket = 'ihsm-dl-automotive-dev'
path_new = 'auto_target_marketing_data/Testing-sandbox/PP_PROCESS_TESTING_DEEPAK/Buick_Encore_studyfile'
i have tried few option like split by delimiter like Path.split('/') but it gives me in list form.
can anyone help me with this?