python动态创建变量

因为python 不需要预先声明,需要用的时候自己创建对象然后同一个对象的值也可以由不同的数据类型来赋。 

>>> temp = abc()
>>> temp.a

Traceback (most recent call last):
  File "<pyshell#45>", line 1, in <module>
    temp.a
AttributeError: abc instance has no attribute 'a'
>>> temp.a = 1
>>> temp.a
1
>>> temp2 = abc()
>>> temp2.a

Traceback (most recent call last):
  File "<pyshell#49>", line 1, in <module>
    temp2.a
AttributeError: abc instance has no attribute 'a'
>>> temp.a
1
>>> tList = [1,2]
>>> tList
[1, 2]
>>> tList[2] = 3

Traceback (most recent call last):
  File "<pyshell#53>", line 1, in <module>
    tList[2] = 3
IndexError: list assignment index out of range
>>> tList.append(3)
>>> tList
[1, 2, 3]
>>> dir(temp)
['__doc__', '__module__', 'a']
>>> dir(temp2)
['__doc__', '__module__']

tempabc实例化后a成员增加到temp对象中。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值