I want to print out the contents of a nested list structure.
Here is my nested list:
usa = ['New York', 'Chicago', 'Seattle']
canada = ['Vancouver', 'Toronto', 'Kelowna']
england = ['London', 'Liverpool', 'Birmingham']
countries = [usa, canada, england]
I want the output to look like:
usa: New york, Chicago, Seattle,
canada: Vancouver, Toronto, Kelowna,
england: London, Liverpool, Birmingham,