I want to place a label inside a frame in tkinter, but I can't figure out how to actually get it inside.
import tkinter
from tkinter import *
W=tkinter.Tk()
W.geometry("800x850+0+0")
W.configure(background="lightblue")
FRAME=Frame(W, width=100, height =50).place(x=700,y=0)
LABEL=Label(FRAME, text="test").pack()
When I run this, it doesn't place the Label inside the frame, but just places it normally on the window. What am I doing wrong?