我在看@propery的實現方法
https://stackoverflow.com/questions/17330160/how-does-the-property-decorator-work-in-python
大約可以了解descriptor object的用法。文中有提到下面Property的class內容
https://docs.python.org/3/howto/descriptor.html#properties
不過我還有一個疑問,如下面的程式碼,@x.setter的x是哪來的︊我知道這個x是跟函式名一樣,但是就property的class,看不出來
@x.setter的x是怎麼產生的