Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

MySQL/PHP Database Applications

Authors: Brad Bulger, Jay Greenspan, David Wall

2nd Edition

ISBN: 0764549634, 9780764549632

More Books

Students also viewed these Databases questions