首页 > 代码库 > python

python

技术分享

 

>>> a = 1
>>> b = "python"
>>> print (a,b)
1 python

 


>>> id(a)
1537759504
>>> id(b)
3759168

本文出自 “蜗牛” 博客,请务必保留此出处http://919250571.blog.51cto.com/9793737/1886016

python