Posts by Guilherme Camargo • 11 points
1 post
-
1
votes3
answers1730
viewsA: Remove quotes in lines from csv file
There is a function in numpy that would be ideal for this case: from numpy import genfromtxt loaded_csv = genfromtxt('iris.csv', delimiter=',') Or use another library, such as pandas, which has a…
pythonanswered Guilherme Camargo 11