Coding/Python 삽질기2010. 1. 22. 01:10
# 리스트에서 음수 제거 하기
def remove_neg(num_list):
    num_list[:] = filter(lambda x: x > 0, num_list)
#-----------------------------------------------------------------------------------

'Coding > Python 삽질기' 카테고리의 다른 글

[Python] Simple template maker  (0) 2010.02.02
[Python] 초간단 Lotto 생성기 소스  (0) 2010.01.22
[Python] Simple file viewer  (0) 2010.01.02
Posted by chobocho