python中的类和object 2018-07-12 In [1]: i = 1In [2]: s = '字符'In [3]: alist=['1',1]In [4]: adict={'one':1}In [5]: aset={1,2}In [6]: type(i)Out[6]: intIn [7]: type(s)Out[7]: strIn [8]: type(alist)Out[8]: listIn [9]: type(adict)Out[9]: dictIn [10]: type(aset)Out[10]: set In [11]: i.__class__Out[11]: intIn [12]: s.__class__Out[12]: strIn [13]: alist.__class__Out[13]: list In [17]: int.__class__Out[17]: typeIn [18]: str.__class__Out[18]: type In [19]: type.__class__Out[19]: type In [20]: object.__class__Out[20]: type 最后更新时间:2023-12-11 15:18:57 http://zhourudong.cn/2018/07/12/63-python中的类和object/ 赏 Prev ununtu常用 Next linux_tips