|
Python - when to use the in operator
Python's in construct, when used with an if statement, lets you loop through all the members of a collection (such as a list or a tuple) and see if there's a member in the list that's equal to the pattern - thus
val = 17
if val in [1,4,5,7,12,14,17,20,34]: print "yes"
will print out "Yes". For looking for an element in a list, this is both quick coding and very efficient at run time, as the check is being done at a 'C level' - in other words, internally to Python without a constant series of reference back to the byte code. However - it IS still a loop.
Consider the following code which checks whether an integer entered by the user in between 0 and 30:
value = int(raw_input("Give me a number between 0 (inclusive) and 30 (exclusive): "))
if value in range(0,30): print "It is in range (1)"
if value < 30 and value >= 0: print "It is in range (2)"
if value in xrange(0,30): print "It is in range (3)"
All three work, and work well. BUT ... if the range we were checking was between 0 and 3 million, it would be a different story. The first test would create a list of 3 million integers internally and would then check our value against each of them - a real memory hog, and likely to break if the number was an order of magnitude higher that 3 million. The third test uses a generator function; not a memory hog, but never the less an internal loop looking at each number from 0 to 2,999,999 in turn and so really slow. The second test remains fast - just two checks to be made, no internal loop, no matter how high the top limit integer is! (written 2006-08-16 07:39:35)
Associated topics are indexed under Y103 - Python - Conditionals and Loops
Some other Articles
Reporting on the 10 largest files or 10 top scoresTalking about other training companies.Tomcat - Shutdown portBuild on what you already have with OOPython - when to use the in operatorPython makes University ChallengeOld Wardour CastleDisplaying data at 5 items per line on a web pageComparison of Object Oriented Philosophy - Python, Java, C++, PerlButterflies in a Wiltshire garden
|
2259 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|