dynamic type variable

J. Peng jpeng at block.duxieweb.com
Sun Jan 20 21:37:36 EST 2008


Python's variable is dynamic type,is it?
But why this can't work?

>>> 3 + 'a'
Traceback (most recent call last):
File "<stdin>", line 1, in ?
TypeError: unsupported operand type(s) for +: 'int' and 'str'


So I see the number 3 can't be converted to string type automacially.



More information about the Python-list mailing list