当我尝试在我的类方法中运行cursor.execute("SELECT VERSION()")
时,它给了我一个SyntaxError。但是在课堂外工作得很好,代码相同。我是Python的新手,尝试过搜索等等但却找不到任何东西。
我得到的错误如下:
cursor.execute("SELECT VERSION()")
^
SyntaxError: invalid syntax
和我尝试运行的代码如下:
try:
# for Python2
from Tkinter import *
except ImportError:
# for Python3
from tkinter import *
import tkMessageBox
import MySQLdb
class Application(Frame):
def __init__(self, master):
Frame.__init__(self,master)
self.grid()
self.create_widgets()
def create_widgets(self):
Label(self, text="Username").grid(row=0)
Label(self, text="Password").grid(row=1)
Label(self, text="Database").grid(row=2)
self.username = Entry(self)
self.username.grid(row=0, column=1)
self.password = Entry(self)
self.password.grid(row=1, column=1)
self.database = Entry(self)
self.database.grid(row=2, column=1)
Button(self, text='Show', command=self.show_entry_fields).grid(row=3, column=1, sticky=W, pady=4)
def show_entry_fields(self):
try:
db = MySQLdb.connect("localhost", "root", "", "python" )
cursor = db.cursor()
cursor.execute("SELECT VERSION()")
data = cursor.fetchone()
db.close()
except:
tkMessageBox.showinfo("Say Hello", "Dont work.")
root = Tk()
root.title("Simple GUI")
root.resizable(width = FALSE, height = FALSE)
root.geometry("700x500")
# Create the frame and add it to the grid
app = Application(root)
root.mainloop()
答案 0 :(得分:1)
您混合了标签和空格。 cursor.execute
行有4个空格而不是它应该具有的一个标签,导致缩进错位。打开"显示空白"在你的编辑器中看到这样的事情更容易。