Community Data Science Course (Spring 2016)/Day 3 Notes: Difference between revisions

From CommunityData
(Created page with "* A `list` is useful to store an ordered set of items that are indexed by integers. * A `dict` or dictionary is a way to store key/value pairs.")
 
No edit summary
Line 1: Line 1:
* A `list` is useful to store an ordered set of items that are indexed by integers.
* A <code>list</code> is useful to store an ordered set of items that are indexed by integers.
* A `dict` or dictionary is a way to store key/value pairs.
* A <code>dict</code> or dictionary is a way to store key/value pairs.

Revision as of 23:21, 12 April 2017

  • A list is useful to store an ordered set of items that are indexed by integers.
  • A dict or dictionary is a way to store key/value pairs.