I am trying to print out a text entry box on a gui but when I do it nothing happens. All I get is a blank screen with the title showing. The text entry box does not appear. Doing this in python. Any Help would be appreciated.
import tkinter as tk
DEFAULT_ARGS = ('MMM', 'AAPL')
root = tk.Tk()
root.title(DEFAULT_ARGS)
firstLabel = tk.Label(root, text="Enter Stock Ticker: ")
firstLabel.grid(row=5, column=1)
firstEntry = tk.Entry(root)
firstEntry.grid(row=1, column=5)
root.mainloop()