In Python I created a 3d list of data which I want to have access to in Julia. I wonder how to do that conveniently. If doing by writing in text file, how to parse it from julia? Or maybe there are specialized solutions for that, such as feather for dataframes?
For example, in python:
a = [[[0, 1]], [[1, 0.5], [2, 0.5]]]
save_to_convenient_for_parsing_file(a, filename)
in julia:
a = read_from_convenient_for_parsing_file(filename)
a
>2-element Vector{Vector{Vector{Float64}}}:
[[0.0, 1.0]]
[[1.0, 0.5], [2.0, 0.5]]
In that example, how save_to_convenient_for_parsing_file and read_from_convenient_for_parsing_file should look?