Learn Python @property in 7 minutes! ⚙️

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

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

  • @BroCodez
    @BroCodez  3 месяца назад +4

    # @property = Decorator used to define a method as a property (it can be accessed like an attribute)
    # Benefit: Add additional logic when you read, write, or delete attributes
    # Gives you a getter, setter, and deleter method
    class Rectangle:
    def __init__(self, width, height):
    self._width = width
    self._height = height
    @property
    def width(self):
    return f"{self._width:.1f}cm"
    @property
    def height(self):
    return f"{self._height:.1f}cm"
    @width.setter
    def width(self, new_width):
    if new_width > 0:
    self._width = new_width
    else:
    print("Width must be greater than zero")
    @height.setter
    def height(self, new_height):
    if new_height > 0:
    self._height = new_height
    else:
    print("Height must be greater than zero")
    @width.deleter
    def width(self):
    del self._width
    print("Width has been deleted")
    @height.deleter
    def height(self):
    del self._height
    print("Height has been deleted")
    rectangle = Rectangle(3, 4)

  • @vortexofficial123
    @vortexofficial123 3 месяца назад +3

    Hello mate i m still following your full python course which is great you re like an angel bro love you .

  • @Diamond_Hanz
    @Diamond_Hanz 3 месяца назад +1

    Bro code is amazing....keep it up! I remember when u had 10k followers! Amazing

  • @bathuudamdin
    @bathuudamdin 2 месяца назад

    Love your work Bro, keep them coming 😊

  • @shricharanramesh7149
    @shricharanramesh7149 3 месяца назад +1

    Bro please make a video on java spring boot

  • @KishanPatel-gq1sw
    @KishanPatel-gq1sw 3 месяца назад +1

    Django backend framework tutorial plsssssssssssss

  • @compositeboson123
    @compositeboson123 3 месяца назад +2

    thanks brogrammer
    edit: also this is a reminder that you should update pycharm or it will lose its charm (sorry I had to do it even tho this is second time)

  • @reddysaichalla
    @reddysaichalla 3 месяца назад

    Bro can you upload react full tuts

  • @zany4164
    @zany4164 3 месяца назад +1

    @BroCodez can you make c++ game developer pls

  • @SumitRanjanBahalia
    @SumitRanjanBahalia 3 месяца назад

    Bro please start backend course

  • @petertoth4799
    @petertoth4799 3 месяца назад

    Message for the algorithm!

  • @olivergrim7634
    @olivergrim7634 3 месяца назад

    WOOOOOOOOOOOOOOOOOOOO MORE PYTHON :ddddddddddddddddddddddddDDDDDDDDDDDDDDDDDDDDDDDDDDDDD

  • @oceanofemotion1
    @oceanofemotion1 3 месяца назад

    Bro can you convert your video in others language ❤

  • @AyushXEditz1
    @AyushXEditz1 3 месяца назад

    5th comment

  • @HungVu-sh8rr
    @HungVu-sh8rr 3 месяца назад

    I have a hard time understand thí

  • @shortshub6826
    @shortshub6826 3 месяца назад +1

    Bro bring adv java and spring boot course🗿

  • @Omikronik
    @Omikronik 3 месяца назад +1

    İm a full time dev now but i remember your react tutorial was very helpful when i was working on college assignments in the past, glad to see you're keeping it up still

  • @felixiyy
    @felixiyy 3 месяца назад +1

    Bro ily UwU >

  • @falcon_map
    @falcon_map 3 месяца назад

    Hello !Are you planning to continue the JavaScript course?