You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The temporary place for storing the journal entries to begin with, will be a Python list. That way we can store entries there and they get deleted when the application ends, but its super easy to do.
The entries themselves can be a Python dictionaries that contains the entry text and date of creation.
Something like this
entries = []
entries.add({
"content": "the entry content",
"date": "the date of creation"
})
The text was updated successfully, but these errors were encountered:
Related to #1
Implementation
The temporary place for storing the journal entries to begin with, will be a Python list. That way we can store entries there and they get deleted when the application ends, but its super easy to do.
The entries themselves can be a Python dictionaries that contains the entry text and date of creation.
Something like this
The text was updated successfully, but these errors were encountered: