我是Python新手,我正在尝试制作一个flashcard脚本,从数据库中检索关键字和定义,然后使用pyqt在闪卡上显示。
有谁知道如何做到这一点,因为我很难搞清楚。
到目前为止,我在下面有一些伪代码。
Function loadFlashcards(topic)
Import sqlite3
With sqlite3.connect (‘db_flashcards’) as db:
Cursor = db.cursor()
Sql = ‘SELECT * FROM tbl_flashcards’;
Cursor.execute(sql)
Result = cursor.fetchall()
for row in result:
print(“Defintion:” + str(row[2]
flip = input(“Press 1 to flip”)
if flip == “1”:
then print (“Keyword: +str[3])
else:
print(“Error”)
END for