JPDev@programming.dev to Programmer Humor@programming.dev · 10 months agoThe Perfect Solutionprogramming.devimagemessage-square69fedilinkarrow-up1677arrow-down17
arrow-up1670arrow-down1imageThe Perfect Solutionprogramming.devJPDev@programming.dev to Programmer Humor@programming.dev · 10 months agomessage-square69fedilink
minus-squareMastershelf@lemmy.onelinkfedilinkarrow-up12arrow-down1·10 months agoTIL Python dictionaries allow trailing commas.
minus-squareEpheralinkfedilinkarrow-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·10 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