A class feature in Python3 like the following:
>>> some_instance.last_edited
None # No change was made
>>> some_instance.content = "I'm making a change to the content(attribute) of this class instance"
>>> some_instance.last_edited
datetime.datetime(2020, 7, 5, 17, 14, 10) # My local time at the time of writing