You are viewing a single thread.
View all comments 11 points
TIL Python dictionaries allow trailing commas.
1 point
3 points
3 points
5 points
5 points
While there are not actually any trailing commas in the dictionaries present and you are correct to say the ones present are part of a list, you can also have trailing commas in Python dictionaries. OP might have researched “Python trailing commas” and learned that part.
Trailing commas are fantastic to reduce changed lines in git
diffs. Makes life much better. Same thing with leading commas in SQL queries.
2 points