SUPPORT UKRAINE
- Your indifference to the act of cruelty can thrive rogue nations like Russia -
タグ
__set__
を含むブログ一覧
1
【Python 雑談・雑学】デスクリプタ ( descriptor ) をしっかりと理解しよう!
Published 2020年7月27日21:34 by mootaro23
次のプログラムを実行した際に4つの print 文で出力されるそれぞれの内容が分かりますか?
class Field:
def __init__(self, name):
self.name = name
self.internal_name = '_' + self.name
def __get__(self, instance, …
1