Posts by Renan Raphael • 51 points
2 posts
-
1
votes1
answer153
viewsA: How to write fields with sqlite3 accent via Python?
I solved it! I put the code to print each column of the tuple separately. def Ler(): ###LENDO # lendo os dados cursor.execute(""" SELECT * FROM posicao; """) for linha in cursor.fetchall(): print…
-
4
votes1
answer153
viewsQ: How to write fields with sqlite3 accent via Python?
Hi, guys! I’m making a small program in python and using sqlite3 to save the database. The program is entering, reading and deleting data in the database called "position". I wonder if there’s a way…