Hello everyone,
I am writing a program that has a part where the user can type in notes,
and I would like the program to insert the date and time into the beginning
of the note.
I have the time and date part figured out:
import datetime
now = datetime.datetime.now()
print(now)
But I haven't been able to figure out how to insert it into the Text(tkinter)
I am using for the user to write the note in.
Any advice in this area would help me exponentially!
Thanks you guys,
-WolfShield