web-dev-qa-db-fra.com

IndexError: Index de tuples en dehors de la plage ----- Python

Aidez-moi, s'il vous plaît. J'exécute un simple programme python qui affichera les données de la base de données mySQL sous une forme tkinter ...

from Tkinter import *
import MySQLdb

def button_click():
    root.destroy()

root = Tk()
root.geometry("600x500+10+10")
root.title("Ariba")

myContainer = Frame(root)
myContainer.pack(side=TOP, expand=YES, fill=BOTH)

db = MySQLdb.connect ("localhost","root","","chocoholics")
s = "Select * from member"
cursor = db.cursor()
cursor.execute(s)
rows = cursor.fetchall()

x = rows[1][1] + " " + rows[1][2]
myLabel1 = Label(myContainer, text = x)
y = rows[2][1] + " " + rows[2][2]
myLabel2 = Label(myContainer, text = y)
btn = Button(myContainer, text = "Quit", command=button_click, height=1, width=6)

myLabel1.pack(side=TOP, expand=NO, fill=BOTH)
myLabel2.pack(side=TOP, expand=NO, fill=BOTH)
btn.pack(side=TOP, expand=YES, fill=NONE)

Thats l'ensemble du programme ....

L'erreur était

x = rows[1][1] + " " + rows[1][2]
IndexError: Tuple index out of range

y = rows[2][1] + " " + rows[2][2]
IndexError: Tuple index out of range

Quelqu'un peut-il m'aider??? Je suis nouveau en python.

Merci beaucoup....

32
Jerald Sanchez

Probablement l'un des index est faux, soit le plus interne, soit le plus externe.

Je suppose que vous voulez dire [0] où vous dites [1] et [1] où vous dites [2]. Les index sont basés sur 0 en Python.

32
glglgl