Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to Python. I see : used in list index especially when it's associated with functional calls, for e.g., python 2.7 document suggests that lists.append translates to a[len(a):] = [x]. Why do one have to suffix len(a) with a colon?

I understand that : is used to identify keys in dictionary. Thanks in advance for the help.

share|improve this question
3  
Where do I get python 4.7? Me wants! In 2.7, The Tutorial covers your question quite nicely. – aaronasterling Oct 25 '10 at 6:44
Sorry for the type: it's 2.7 – kuriouscoder Oct 25 '10 at 6:44

2 Answers

up vote 8 down vote accepted

slicing operator. http://docs.python.org/tutorial/introduction.html#strings and scroll down a bit

share|improve this answer
7  
He should probably skip the "scroll down" part and just read the whole thing. – Glenn Maynard Oct 25 '10 at 8:45

: is the delimiter of the slice syntax to 'slice out' sub-parts in sequences , [start:end]

[1:5] is equivalent to "from 1 to 5" (5 not included)
[1:] is equivalent to "1 to end"
[len(a):] is equivalent to "from length of a to end"

Watch http://www.youtube.com/watch?v=tKTZoB2Vjuk at around 40:00 he starts explaining that.

Works with tuples, dictionaries and lists, too.

share|improve this answer
4  
Yeah, I guess downvoting is what people helping people who can't help themselves by using Google and the Python documentation deserve. – soulseekah Oct 25 '10 at 6:58
1  
Remember that [1:5] starts with the object at index 1, and the object at index 5 is not included. You can also make a soft copy of a list with [:] – Garrett Hyde Oct 25 '10 at 7:51
+1 thanks for pointing it out, forgot about that. – soulseekah Oct 25 '10 at 8:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.