JPDev@programming.dev to Programmer Humor@programming.dev · 10 months agoThe Perfect Solutionprogramming.devimagemessage-square67fedilinkarrow-up1671
arrow-up1671imageThe Perfect Solutionprogramming.devJPDev@programming.dev to Programmer Humor@programming.dev · 10 months agomessage-square67fedilink
minus-squareMastershelf@lemmy.onelinkfedilinkarrow-up12·10 months agoTIL Python dictionaries allow trailing commas.
minus-squareEphera@lemmy.mllinkfedilinkarrow-up3·10 months agoYeah, I think, that’s only really JSON which is so pedantic about it…
minus-squareowenfromcanada@lemmy.worldlinkfedilinkEnglisharrow-up3·10 months agoYeah… sweats nervously in C
minus-squarerenzev@lemmy.worldlinkfedilinkarrow-up1·9 months agoPython is so great (half-sarcasm) that a trailing comma on its own constitutes a tuple (immutable list): mytuple = 4, assert len(mytuple) == 1 assert mytuple[0] == 4
TIL Python dictionaries allow trailing commas.
Yeah, I think, that’s only really JSON which is so pedantic about it…
Yeah…
sweats nervously in C
Python is so great (half-sarcasm) that a trailing comma on its own constitutes a tuple (immutable list):
mytuple = 4, assert len(mytuple) == 1 assert mytuple[0] == 4