I have this csv file that looks a bit like this:
1,2,3
3,4,5
5,6,7
and I need to convert it (preferably in python) to a .js file array that looks more like this:
var variable1 = [
[1,2,3],
[3,4,5],
[5,6,7],
];
I'm very new to programming, so any guidance would be very helpful! Thanks so much!