1. 程式人生 > >Python的字典的items(), keys(), values()

Python的字典的items(), keys(), values()

知識 star num 字典 lib ace value clas lan

Python的字典的items(), keys(), values()都返回一個list

  1. >>> dict = { 1 : 2, ‘a‘ : ‘b‘, ‘hello‘ : ‘world‘ }
  2. >>> dict.values()
  3. [‘b‘, 2, ‘world‘]
  4. >>> dict.keys()
  5. [‘a‘, 1, ‘hello‘]
  6. >>> dict.items()
  7. [(‘a‘, ‘b‘), (1, 2), (‘hello‘, ‘world‘)]

Python的字典的items(), keys(), values()