JPDev@programming.dev to Programmer Humor@programming.dev · 10 months agoThe Perfect Solutionprogramming.devimagemessage-square76fedilinkarrow-up1676arrow-down18
arrow-up1668arrow-down1imageThe Perfect Solutionprogramming.devJPDev@programming.dev to Programmer Humor@programming.dev · 10 months agomessage-square76fedilink
minus-squareMastershelf@lemmy.onelinkfedilinkarrow-up9arrow-down1·10 months agoTIL Python dictionaries allow trailing commas.
minus-squareEphera@lemmy.mllinkfedilinkarrow-up1·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.
List
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