7
වර්ගය () සහ සමස්ථානික () අතර ඇති වෙනස්කම් මොනවාද?
මෙම කේත කොටස් දෙක අතර ඇති වෙනස්කම් මොනවාද? භාවිතා කිරීම type(): import types if type(a) is types.DictType: do_something() if type(b) in types.StringTypes: do_something_else() භාවිතා කිරීම isinstance(): if isinstance(a, dict): do_something() if isinstance(b, str) or isinstance(b, unicode): do_something_else()
1268
python
oop
inheritance
types