I am afraid that this is a 'how to' question. I have a function that returns three variables from a text file. I would like to 'print' them to separate label fields so that I can clearly highlight different information. I have only managed so far to combine them into one return statement using the .format notation. So I want to
return date, name, numeric_data
and want to be able, in tinter GUI
label_name.configure( text = date)
label_name2.configure( text = name)
label_name3.configure(text = numeric_data)
At the moment, all I have is:
output = read_clean_format.openfile() # which is return "{}{}{}".format(text,text,text)
version_result.configure(text = output)
Is this possible? Where can I hunt information.