Python 어렵게 배우기 - Exercise 32: Loops and Lists
원문 : http://learnpythonthehardway.org/book/ex32.html List에 대해서 알아보자 (ex32.py) the_count = [1, 2, 3, 4, 5] fruits = ['apples', 'oranges', 'pears', 'apricots'] change = [1, 'pennies', 2, 'dimes', 3, 'quarters'] # this first kind of for-loop goes through a list for number in the_count: print "This is count %d" % number # same as above for fruit in fruits: print "A fruit of type: %s" % fruit # also ..
더보기
Python - filter()
공식 문서 : http://docs.python.org/2/library/functions.html#filter 어떤 배열(리스트, 튜플)을 가지고 조건을 걸어서 새로운 배열을 생성해 낸다. 사용법 filter(function, iterable) 사용 예 a = [1, 2, 3, 4, 5, 6, 7, 8] #3 보다 큰 값들만 뽑아 보자 filter(lambda x : x > 3, a) #[4, 5, 6, 7, 8]
더보기