So, I'm trying to prompt the user for multiple variables.
I use this simple gui prompt method, but it only prompts for 1 item at a time, I want to be able to have multiple items in the same gui window. Any help is appreciated.
from tkinter import simpledialog
item = simpledialog.askstring("New Item", "Enter name of item:")
print(item)