Boston Python Workshop 8/Friday/Lists: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

9 April 2014

  • curprev 12:1412:14, 9 April 2014imported>Jesstess 1,738 bytes +1,738 Created page with "<pre> Defining lists >>> your_list = ["a", "b", "c"] >>> type(your_list) <type 'list'> >>> my_list = [.1, 5, -7, 15] Length >>> len(your_list) 3 >>> len(my_list) 4 Contain..."