본문 바로가기

Leni

(137)
[ 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 ] 시스템 명령어 실행하기 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