the python @property decorator (beginner - intermediate) anthony explains

Поделиться
HTML-код
  • Опубликовано: 27 сен 2024

Комментарии • 11

  • @zustaz
    @zustaz 3 года назад +11

    You are a great teacher :)

  • @sammybibs
    @sammybibs 3 года назад +6

    Clear, concise ! Nice one 👍

  • @josht7238
    @josht7238 2 года назад

    thanks so much explained very well!!

  • @420_gunna
    @420_gunna 2 года назад +2

    I wonder how the setter and deleter decorators actually _work_, under the hood? I can see that @property is a built-in function that can be used as a decorator. It exists out there, somewhere. But @loc.setter? I suppose that's some callable on the object named loc... But interesting to my little Python brain that it can just refer to `loc` as `loc` , rather than something weird like `self.loc` :\ Anyone got an answer on how it works under the hood, before I go to the docs? :)

    • @anthonywritescode
      @anthonywritescode  2 года назад +1

      the `property` decorator returns an object which itself has a `setter` attribute that is also a decorator!
      written out it'd be like:
      ```
      def _f(self): ... # renamed for clarity
      f = property(_f)
      def _f(self, x): .. # renamed for clarity
      f = f.setter(_f)
      ```
      see also ruclips.net/video/WDMr6WolKUM/видео.html

  • @omkarkhatavkar8563
    @omkarkhatavkar8563 2 года назад

    waiting for descriptor videos

  • @programmer4833
    @programmer4833 4 года назад +1

    Nice video ! I tried keeping up with the concepts explained, which I could untill you used @MyProperty, which I didn't quite understand : what does @ do ?

    • @programmer4833
      @programmer4833 4 года назад

      really nice video ! the music in background is not to loud and your voice as well ! only problem is you should explain a bit more sometimes

    • @anthonywritescode
      @anthonywritescode  4 года назад

      yep didn't cover that in this video because it's covered in the one linked in the description! ruclips.net/video/WDMr6WolKUM/видео.html

  • @alihandro20
    @alihandro20 3 года назад +1

    Perfect

  • @noone8740
    @noone8740 2 года назад

    wow