I am trying to make GUI and would like to have an option to save text file created in this GUI with filename taken from user's input.
Have something like this:
script_name_input_area = Entry(
width = 30).place(x = 100, y = 60)
Saving function defined like this:
def savef():
file = filedialog.asksaveasfile(initialdir='/', title="select file", initialfile= ('FIX THIS!!')...
Is there a way to incorporate user's ENTRY into initialfile?