¿Cómo seleccionar un dato como 100 sin [(100)], a partir de PostgreSQL usando Python?

Lovindu Lochana:

Tengo una tabla que tiene sólo 1 fila, sólo necesito para actualizar los datos en la primera fila. Necesito una vista previa de los datos en el inicio como la riqueza total: - 2.000 Efectivo: - 0 Ahorro: - 2000. Sin embargo, las vistas previas, como se muestra a continuación. introducir descripción de la imagen aquí, por favor, dame lo tanto una solución para esto.

from tkinter import *
import psycopg2

try:
    connection = psycopg2.connect(user="postgres",
                              password="postgres",
                              host="localhost",
                              port="5432",
                              database="money_db")
    cursor = connection.cursor()

    query_cash = "select cash from main where index = 1;"
    query_savings = "select savings from main where index = 1;"

    cursor.execute(query_cash)
    cash = cursor.fetchall()


    cursor.execute(query_savings)
    savings = cursor.fetchall()


    t_w = (cash + savings)

    cursor.execute("commit;")
    if (connection):
        cursor.close()
        connection.close()
        print("PostgreSQL connection is closed")
except (Exception, psycopg2.Error) as error:
    print("Error while fetching data from PostgreSQL", error)

root = Tk()
root.geometry("900x500")
root.resizable(width=False, height=False)

t_w_lbl = Label(text="Total Wealth = " + str(t_w), font=("Calibry", 14), bg="white")
t_w_lbl.place(rely=0.04, relx=0.1)

cash_lbl = Label(text="Cash = " + str(cash), font=("Calibry", 14), bg="white")
cash_lbl.place(rely=0.04, relx=0.45)

photo = PhotoImage(file = "exchange.png")
exchange_btn = Button(image = photo, command = lambda: exchange())
exchange_btn.place(relx = 0.64, rely = 0.03, height = 35, width = 50)

savings_lbl = Label(text="Savings = " + str(savings), font=("Calibry", 14), bg="white")
savings_lbl.place(rely=0.04, relx=0.8)`
blhsing:

Debe utilizar el fetchonemétodo en su lugar y desempaquetar la tupla regresar (nótese la coma añadido).

Cambio:

cash = cursor.fetchall()
...
savings = cursor.fetchall()

a:

cash, = cursor.fetchone()
...
savings, = cursor.fetchone()

Supongo que te gusta

Origin http://10.200.1.11:23101/article/api/json?id=408843&siteId=1
Recomendado
Clasificación