Contoh Bingkai Tkinter

from tkinter import *
root = Tk()

my_frame = Frame(root, height = 20, width = 20)
myframe.pack(root)
Tame Toucan