In Zope/Plone we use traversal for almost everything:
root = somehow_get_root()
content = root.restrictedTraverse('and/now/get/some/content')
Wouldn't it be cool to be able to do instead:
root = somehow_get_root()
content = root / 'and' / 'now' / 'get' / 'some' / 'content'
✨