Changes

Jump to: navigation, search

OPS435 Python Lab 3

122 bytes added, 07:20, 3 June 2017
PART 1 - Navigating Items in Lists
list2 = [ 'uli101', 'ops235', 'ops335', 'ops435', 'ops535', 'ops635' ]
list3 = [ 'uli101', 1, 'ops235', 2, 'ops335', 3, 'ops435', 4, 'ops535', 5, 'ops635', 6 ]
</source>:#List are constructed similar to arrays. The best way to get individual items from a list is using the list '''index'''. The index is a number starting from 0 to (number_of_items - 1), the list index starts counting at 0.<br><br>:#Issue the following in the ipython shell to obtain stored data:<source>
list1[0] # First item in list1
list2[1] # Second item in list2
13,420
edits

Navigation menu