Question: I have an assignment that requires me to use Python programming. I have to create 3 frames, I need help finishing this assignment here are

I have an assignment that requires me to use Python programming. I have to create 3 frames, I need help finishing this assignment

here are the instructions...

  • Create 3 frame/label objects
  • Place 2 objects side-by-side on top of the screen
  • Place the 3rd object below the top 2, spanning two columns
  • Display a picture in one of the top 2 objects
  • Display some text(any) in each of the other 2, or text in one and navigation buttons in the other

this is my progress so far ........

from tkinter import *

from PIL import ImageTk, Image

import sqlite3

root = Tk()

root.title('Student Database Screen')

conn = sqlite3.connect('students.db')

c = conn.cursor()

c.execute("Select ', old From students")

records = c.fetchall()

dataStr = ''

for token in records[2]:

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!