Python(2) variable

来源:互联网 发布:淘宝网站经营管理 编辑:程序博客网 时间:2024/06/08 09:55

There is still not too much work for today.大笑 So I spent one hour to study python data type.

As the same as java, there are five type of python data. (Numbers,String,List,Dictonary andTuple).

In my practice, I found three interesting thing about the python data type.


yes, the Boolean transfer to number automatically and the default value is1.

I think it is much convenience than other program language, python is allow to set value for multiple variable at the same time. it even can be different types of data.

Besides, you also can delete the declared variable by use the build-in method. (del)


0 0