Feb-26-2025, 05:56 PM
hello, everybody. can someone tell me what's wrong? even trying to correct with AI doesn't work.
import sqlite3 from tkinter.constants import INSERT conn = sqlite3.connect('test_sqlite.db') c = conn.cursor() tabela3 = ('''CREATE TABLE cedido (matricula INTEGER PRIMARY KEY, nome TEXT, FOREIGN KEY(cessionario_cnpj) REFERENCES cessionario(cessionario_cnpj), processo TEXT, cpf TEXT, esfera TEXT, FOREIGN KEY (cessionario_nome) REFERENCES cessionario(cessionario_nome))''') c.execute(tabela3)the error:
Quote: File "C:\Users\vitor\Documents\pythonFiles\testing_sqlite.py", line 14
tabela3 = ('''CREATE TABLE cedido
IndentationError: unexpected indent