12 ms·
This is such a bad take
by rand_flip_bit 3y ago
This is such a bad take
- Spivak 3y agoCare to like, elaborate? Stopping people from doing brittle stuff like print("{") for elem in list: print('"key": "value",') print("}") seems like immediate worth.
- alwaysbeconsing 3y agoThat's not a very big hurdle to overcome, though: print("{") contents = "" for elem in list: contents += '"key": "value",' print(contents[:-1]) print("}")