Apologies, I am new to Python.
I am trying to import a list of products from a file in this format:
02154367, "Item 1", 1.45
38418495, "Item 2", 0.6
82530174, "Item 3", 0.95
and I need them in python in this format:
[[02154367,"Item 1",1.45],[38418495,"Item 2",0.6],[82530174,"Item 3",0.95]]
Any advice would be greatly appreciated :)