@nachtpfoetchen tbh i have the same feeling about case in other languages. I very rarely use it in bash, i prefer if’s and elif chains
@nachtpfoetchen @domi because of how Python data is usually structured (not as enums, often just very basic tuples and stuff, many classes not match-compatible), it’s not very useful. Languages that have deeply structured powerful datatypes (proper sum and union types, for instance) which are match-compatible by default benefit a lot more from pattern matching, where this becomes the prevailing pattern. See Rust, Haskell and most functional languages.