Write a Python script that does each of the following:
What you will learn:
Write a function that takes a file name and a dataset name (path), and exports that dataset from the Hdf5 file to a CSV (comma separated values) file. Use the h5py and csv modules.
What you will learn:
Write a Python script that creates an Hdf5 file and populates it with some sample groups and datasets. You can hard code some sample data in your script, or, alternatively you can read your data from a separate data file (for example, a CSV file). Use the h5py module.
What you will learn: