14
පයිතන් හි වස්තුවකට ලක්ෂණයක් තිබේදැයි දැන ගන්නේ කෙසේද
වස්තුවකට කිසියම් ලක්ෂණයක් තිබේද යන්න තීරණය කිරීමට පයිතන්හි ක්රමයක් තිබේද? උදාහරණයක් වශයෙන්: >>> a = SomeClass() >>> a.someProperty = value >>> a.property Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: SomeClass instance has no attribute 'property' එය භාවිතා කිරීමට පෙර aගුණාංගය තිබේදැයි ඔබ කියන්නේ කෙසේද property?
1661
python
attributes