I'm experimenting with Tkinter for the first time. I'm writing an interface for a caesar cipher program. How can I put the second label and text box underneath the first? I tried using \n but that only put the label underneath, not the textbox.
from tkinter import *
top=Tk()
text= Text(top)
text.insert(INSERT, "This is a Caesar Cipher encrypter.")
L1 = Label(top, text="Enter your text here")
L1.pack( side = LEFT)
E1 = Entry(top, bd =5)
E1.pack(side = RIGHT)
L2 = Label(top, text="Enter your key here")
L2.pack( side = LEFT)
E2 = Entry(top, bd =5)
E2.pack(side = RIGHT)
top.mainloop()
Gives me:

How would you suggest I fix this?
