2012年11月24日
摘要: Pyhton中的数据类型是一种弱类型,其实解释性语言基本上都是弱类型如Shell、Perl等。数据类型:intfloatStringListDict11.1a[‘a’,]{‘key’:’value’}In [1]: print type(1)<type 'int'>In [2]: print type(1.1)<type 'float'>In [3]: print type('a')<type 'str'>In [4]: print type(['a'])<type  阅读全文
posted @ 2012-11-24 14:28 njfylong 阅读(137) 评论(0) 推荐(0)