← Back to context

Comment by augusto-moura

3 days ago

Problem is, we already have a syntax for empty lists [], empty tuples (), and {} is taken for an empty dict. So having a syntax for an empty set actually makes sense to me

Making sense, and being good, is not necessary the same.

Yes, having a solution for this makes sense, but the proposed solutions are just not good. Sometimes one has to admit that not everything can be solved gracefully and just stop, hunting the whale.

You can use “set()”. Introducing more weird special cases into the language is a bad direction for Python.

  • And you can use dict() for an empty dictionary, and list() for an empty list.

    • For reasons I don't think I understand, using the functions is "discouraged" because "someone might muck with how those functions work" and the python world, in it's perfect wisdom responded "Oh of course" instead of "That's so damn stupid, don't do that because it would be surprising to people who expect built in functions to do built in logic"

  • No no no, it's a great direction towards becoming the new Perl.