J
Jim
Greetings, folks,
I am using python 2.7.2. Here is something I got:
Well, I expected a[i:j] to be 'opula', and can't think of any reason why this is not happening. So, can anybody help me out about this? Thank you very much.
Jim
I am using python 2.7.2. Here is something I got:
'opul'a = 'popular'
i = a.find('o')
j = a.find('a')
a[i:j]
Well, I expected a[i:j] to be 'opula', and can't think of any reason why this is not happening. So, can anybody help me out about this? Thank you very much.
Jim