분류 전체보기 (167) 썸네일형 리스트형 👻프로그램, 프로세스, 데몬이란? 내용 이전 하였습니다!다음 링크에서 내용 확인 부탁드립니다! 👇 👇 👇 👇 https://proni.tistory.com/entry/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%A8-%ED%94%84%EB%A1%9C%EC%84%B8%EC%8A%A4-%EB%8D%B0%EB%AA%AC%EC%9D%B4%EB%9E%80 [ Python ] Python Documents Python Documents 두 페이지 모두 영어로 되어 있는 페이지입니다.Chrome을 사용하시면 영문페이지 한글번역이 가능합니다. 참조내용 1. Python Tips2. Python 2.7.13 documentation [ 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.. [ Snagit 13 ] 화면 캡쳐 프로그램 사진 캡쳐, 수정 / 고화질 동영상 캡처 / 스크롤 캡처 등등 캡처의 중심! 보통 window에서 화면을 캡쳐할 때 window에서 기본으로 제공하는 '캡처 도구'를 사용하실텐데요. 캡처만 하면 된다는 분들은 불편함을 느끼지 않으시겟지만, 캡처한 화면을 수정, 편집을 많이 하는 저에게는 캡처 도구가 2% 부족한 느낌이.. MAC의 경우 별도의 프로그램 설치 없이 자체 편집도구( shift + cmd + 3 or 4 )만드로도 충분한 기능이 되지만, window에서는 역시 아직 조금 부족합니다. 그래서 소개해 드릴 프로그램은 Snagit 13 입니다. 사실 Snagit 13이 나오기 전에 Snagit 11을 사용해왔었는데요. 물론 그때도 매우 편하게 사용을 하고 있었습니다. 사실 제가 느끼기에는 13과 1.. [ 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.. 이전 1 ··· 15 16 17 18 19 20 21 다음