导语:
本文主要介绍了关于Python中__slots__的禁用实例的相关知识,包括python中slice的用法,以及python的sort()和sorted()的区别这些编程知识,希望对大家有参考作用。
1、说明
2、实例
class Test:
__slots__ = ('a', 'b')
def __init__(self, a, b):
self.a = a
self.b = b
>>> t = Test(1, 2)
>>> t.__dict__
AttributeError: 'Test' object has no attribute '__dict__'
>>> Test.__dict__
mappingproxy({'__module__': '__main__',
'__slots__': ('a', 'b'),
'__init__': <function __main__.Test.__init__(self, a, b)>,
'a': <member 'a' of 'Test' objects>,
'b': <member 'b' of 'Test' objects>,
'__doc__': None})
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何结束一个python程序11/27
- ♥ python mktime()如何计算时间11/27
- ♥ python3开头如何设置utf-808/16
- ♥ Python格式函数的使用09/02
- ♥ Python如何在进程间通信12/16
- ♥ 如何使用 python ORM 创建数据库表?01/10
内容反馈