Posts by Israel Oliveira • 21 points
2 posts
-
1
votes1
answer990
viewsQ: How to make the label background transparent ? python3 + Tkinter
lbl2 = Label(jan, font=("Arial", 12, "bold"), text="Escolha apenas uma Categoria por vez") lbl2.place(x=20, y=450) I’m putting this label on top of a green image, but it ends up with her background…
-
1
votes0
answers720
viewsQ: How do I check a login with sqlite3 + Python3?
from tkinter import * from tkinter import messagebox from random import randint import os import sqlite3 from tkinter import ttk con = sqlite3.connect('BancoDeDadosCadastro.db') cur = con.cursor()…