Posts by Claudinei Miller • 29 points
6 posts
-
2
votes1
answer36
viewsA: How to rescue sqlite3 data with python?
After a lot of research and several tests I changed the code section below that made everything work right. self.nomes = [] def consulta_BD(self): conexao = sqlite3.connect("saveData.db") cursor =…
-
0
votes1
answer36
viewsQ: How to rescue sqlite3 data with python?
I have an application in Tkinter (Basic registration that every apprentice does) where I saved the data in sqlite3, but I’m having difficulties in recovering this data. What I need exactly is: That…
-
1
votes4
answers87
viewsA: Comparing dictionary values() with list values
Grateful to all who collaborated with me, but after eating a lot of documentation I arrived at the following code below that satisfied my need. I thought it was better to use "Collections" and it…
-
-2
votes4
answers87
viewsQ: Comparing dictionary values() with list values
I have the following dictionary and a list; from the dictionary I extracted the top 10 values. My question is this: I need to compare the keys of the respective values extracted from the dictMaior…
-
0
votes1
answer2434
viewsQ: Python3 Typeerror: Unsupported operand type(s) for +: 'int' and 'list'
Gentlemen, starting in python and cracking my head here... I have a cvs file with hundreds of lines, (I know that pandas would be ideal for this, but as I said I’m starting, and I need to understand…
python-3.xasked Claudinei Miller 29 -
0
votes2
answers719
viewsQ: python: Attributeerror: 'int' Object has no attribute 'Count'
I have a code that is returning me the following error AttributeError: 'int' object has no attribute 'count'... I have a list of multiple numbers, and I need to know how many repeat numbers from 1…
pythonasked Claudinei Miller 29