I\'m new at Python, and I\'m trying to basically make a hash table that checks if a key points to a value in the table, and if not, initializes it to an empty array. The off
The error message says that get takes no keyword arguments but you are providing one with default=0
get
default=0
converted_comments[submission.id] = converted_comments.get(submission.id, 0)