Comment on Ask HN: What's your favorite Python quirk?Comments−probinso10yMy favorite quirk was deprecated.Python 2.xdef function(a, (b, c)): # pattern extract matches a strictly two-elementsPython 3.xdef function(a, b_c): # not as clean, nor as expressive
Comments
My favorite quirk was deprecated.
Python 2.x
def function(a, (b, c)): # pattern extract matches a strictly two-elements
Python 3.x
def function(a, b_c): # not as clean, nor as expressive