Posts by Louhan Vargas • 63 points
2 posts
-
1
votes3
answers95
viewsA: Issue in question Python String/File Manipulation
The way I see it, this is looking like an encoding problem in your file. Try adding the utf-8 encoding parameter to your line 4. Thus remaining: arq1=open('CADASTRO.txt','r', encoding='utf-8') If…
-
5
votes1
answer137
viewsQ: Doubt about Neural Networks
I had finished the course of Neural Networks with python, and simply after having trained my entire neural network, I had a question about the use of it. For example, after my network goes through…