|
> Do you learn and use all of any language you use? yes for Python Have you really used all of these Python features (from https://twitter.com/raymondh/status/1280988785841278976)? __class_getitem__, __init_subclass__, __prepare__, __qualname__, __slots__, __spec__, __annotations__ __subclasshook__, __abstractmethods__, __text_signature__, __index__, __loader__, __mro__ I've been writing Python for years, but I've never even heard of half of them. |
All Python-like languages have the same or similar mechanisms (for example, a method resolution order whenever there is multiple inheritance) and they are usually not explicit and not customizable.