Posts by Matheus • 1 point
3 posts
-
0
votes1
answer201
viewsA: Django-admin startproject command does not create the Manage.py file
I do not know if it was the case but try to put the name of the directory at the end, example: You put django-admin startproject try to put django-admin startproject nome_da_pasta I know your…
-
0
votes2
answers116
viewsA: Why are the commas of the numbers being deleted when importing data with Pandas?
I managed to sort it out like this df_full = pd.read_html(str(table).replace(',', '.'))[0] Probably wasn’t recognizing the comma in the middle of the same numbers!
-
0
votes2
answers116
viewsQ: Why are the commas of the numbers being deleted when importing data with Pandas?
I’m racking my brain to understand why this is happening when I take numerical data from a table on the web. In this table contain the values of the quotations of the coins, the problem occurs that,…