내장함수 (2) 썸네일형 리스트형 [ Python ] map() 함수 Pythonmap() 함수 시작 전 테스트환경 살피기 Time 2017년 08월 18일 OS Linux(Ubuntu 16.04 LTS) Language Python 2.7 map(function_to_apply, list_of_inputs) Apply function to every item of iterable and return a list of the results. If additional iterable arguments are passed, function must take that many arguments and is applied to the items from all iterables in parallel. If one iterable is shorter than another it i.. [ Python ] 시스템 명령어 실행하기 PythonPython code로 시스템 명령어 실행하기 시작 전 테스트환경 살피기 Time 2017년 08월 18일 OS Linux(Ubuntu 16.04 LTS) Language Python 2.7 import osos.system( 시스템 명령어와 인자값 ) os.system("ls -al") 이전 1 다음