I have been working with Python in the past, set it aside and now I am happy to be back. I am trying to access the first two elements in a list but I keep getting just the first element, and not the second.
The following is from the Python shell. It seems that when I use [i:j] when j=i+1, I am getting just the first element. Is this the correct behavior?
>>> p=['ho','he','hoo']
>>> p
['ho', 'he', 'hoo']
>>> p[0:1]
['ho']
>>> p[1:0]
[]
>>> p[0:1]
['ho']
>>> p[1]
'he'
>>> p[0:3]
['ho', 'he', 'hoo']
>>> p[0:2]
['ho', 'he']
>>> p[0:3]
['ho', 'he', 'hoo']
>>> p[1:2]
['he']
The Python version I use is:
Python 3.2 (r32:88445, Feb 21 2011, 21:11:06) [GCC 4.6.0 20110212 (Red Hat 4.6.0-0.7)] on linux2
The Linux is Centos, kernel is
Linux Fedora 2.6.41.4-1.fc15.x86_64 #1
myList[0:2]gets positions 0 and 1. If you're starting with 0 you can omit it, somyList[:2]is analogous. – g.d.d.c Jan 6 '12 at 19:33