Posts by Fábio Gorodscy • 11 points
2 posts
-
0
votes1
answer67
viewsA: How do I get information from the first three lines of a table?
I don’t know exactly what you need, but maybe you could start with something like. function le_tabela(linhas){ var tabela = $("#tabela").find("tr"); var matriz = new Array(linhas); for(var…
jqueryanswered Fábio Gorodscy 11 -
1
votes2
answers7350
viewsA: error when conver string to float in python
The String you are reading has the form '36.99' (DD,DD), this cannot be converted to float by this python function. You need to transform your string to the form 'DD.DD' (36.99) before making the…