개발자 레니는 지금 - (135) 썸네일형 리스트형 [ 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 ] range()와 xrange()의 차이 Python range()와 xrange()의 차이 시작 전 테스트환경 살피기 Time 2017년 08월 18일 OS Linux(Ubuntu 16.04 LTS) Language Python 2.7 range(start, stop[, step]) This is a versatile function to create lists containing arithmetic progressions. It is most often used in for loops. The arguments must be plain integers. If the step argument is omitted, it defaults to 1. If the start argument is omitted, it defaults to 0. The.. [ Ubuntu ] 34bits? 64bits? 확인방법 34bits? 64bits? 확인방법 #우분투는 버전별로 작동이 상이할 수 있으니, 참고부탁드립니다 시작 전 테스트환경 살피기 Time 2017년 08월 18일 OS Linux(Ubuntu 16.04 LTS) 터미널에 아래의 명령어를 입력하면 시스템 타입을 알 수 있다!Run this command in your terminal to check your operating system's typeuname -m 👻[ Ubuntu ] 터미널에서 웹브라우저(Chrome) 열기 내용 이전 하였습니다!다음 링크에서 내용 확인 부탁드립니다! 👇 👇 👇 👇 https://proni.tistory.com/entry/%F0%9F%90%A7-%ED%84%B0%EB%AF%B8%EB%84%90%EC%97%90%EC%84%9C-%EC%9B%B9-%EB%B8%8C%EB%9D%BC%EC%9A%B0%EC%A0%80chrome-%EC%97%B4%EA%B8%B0 [ Python ] Pickle! binary를 file에 자료형 그대로 저장하기! PythonPickle! binary를 file에 자료형 그대로 저장하기! 시작 전 테스트환경 살피기 Time 2017년 08월 18일 OS Linux(Ubuntu 16.04 LTS) Language Python 2.7 일반 텍스트를 파일로 저장할 때는 파일 입출력을 이용하면 되지만, list 나 class같은 자료형을 일반 입출력을 이용하여 저장하거나 불러올 수 없다. >>> testList=[1, 2, 3, 4]>>> with open("test.txt", "wb") as f: f.write(testList)... Traceback (most recent call last): File "", line 1, in TypeError: argument 1 must be string or buffer, no.. [ Python ] 시스템 명령어 실행하기 PythonPython code로 시스템 명령어 실행하기 시작 전 테스트환경 살피기 Time 2017년 08월 18일 OS Linux(Ubuntu 16.04 LTS) Language Python 2.7 import osos.system( 시스템 명령어와 인자값 ) os.system("ls -al") 👻[ Python ] File 혹은 Dir 삭제하기 내용 이전 하였습니다!다음 링크에서 내용 확인 부탁드립니다! 👇 👇 👇 👇 https://proni.tistory.com/entry/%F0%9F%90%8D-Python-code%EB%A1%9C-Ubuntu-file-directory-%EC%82%AD%EC%A0%9C%ED%95%98%EA%B8%B0 [ Ubuntu ] 프로세스들을 이름으로 한번에 종료하기 프로세스들을 이름으로 한번에 종료하기 #우분투는 버전별로 작동이 상이할 수 있으니, 참고부탁드립니다 시작 전 테스트환경 살피기 Time 2017년 08월 18일 OS Linux(Ubuntu 16.04 LTS) Killall - 프로세스명이 일치하는 프로세스들의 경우 한번에 종료시킬 수 있다.- 터미널에 아래 커멘드를 입력한다. PROCESS_NAME에는 자신이 종료시킬 PROCESS의 이름을 적어준다. $ killall -9 PROCESS_NAME 좀 더 자세한 설명이 필요하다면 아래 url를 참조하자 https://bakyeono.net/post/2015-05-05-linux-kill-process-by-name.html 이전 1 ··· 12 13 14 15 16 17 다음