Posts by Iann • 46 points
2 posts
-
0
votes3
answers3451
viewsA: How to count the records of a csv in python?
No need to iterate over CSV lines. You can get what you need by using pandas: import pandas as pd df = pd.read_csv('test.csv') print(len(df[df['Sexo'] == "Feminino"].index)) Explaining: Returns a…
-
3
votes3
answers2084
views