When I enter a value into the entry it then should print to the console, however, instead it prints a new line and nothing else. I'm new to tkinter and am just testing things out at the moment.
def main(self, event= None):
v = StringVar()
entry1 = Entry(width = 20, textvariable = v)
entry1.bind("<Return>", self.main)
entry1.focus()
self.removeWidgits()
homeLabel.place_forget()
exitButton.pack(side = BOTTOM)
entry1.place(x = 0, y = 0)
v = entry1.get()
print(v)