Posts by Ricardo Waldow • 31 points
3 posts
-
1
votes2
answers341
viewsA: Problem with pandas in pycharm
To call a file it is necessary to put the reference as a string (in quotes) and specify the type of the file after its name: dados =…
-
1
votes3
answers98
viewsA: How to identify numeric digits in numbers within a list?
Try: for i in range((len(lista)-1),-1,-1): if (lista[i] % 10) == 7: del(lista[i])
-
-1
votes2
answers85
viewsA: Analyze Data with python
Try this before plotting again: licitacoes.valor = licitacoes.valor.astype(float) Edit:The variables of the 'value' column are as strings, to plot the graph you need a numerical value, ie int or…
pythonanswered Ricardo Waldow 31