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
Get step-by-step solutions from verified subject matter experts
