天生我才必有用

Python的基本内置类型

分类: python    作者:Ray    2008年09月19日
  1. Numbers: 1234, 3.1415, 999L, 3+4j, Decimal
  2. Strings: ’spam’, “guido’s”
  3. Lists: [1, [2, ‘three’], 4]
  4. Dictionaries: {’food’: ’spam’, ‘taste’: ‘yum’}
  5. Tuples: (1,’spam’, 4, ‘U’)
  6. Files: myfile = open(’eggs’, ‘r’)
  7. Other types: Sets, types, None, Booleans
标签: