본문 바로가기

전체 글

(104)
TIL 10/11~10/17 - 정보처리기사 실기 과목 위주의 정리 - 리눅스 설치 및 쉘 환경 세팅 - VirtualEnv -> Miniconda 로 가상환경변경 및 가상환경 관리 미니콘다 설치 링크 https://docs.conda.io/en/latest/miniconda.html 미리 사전 설정 명령어 넣기 #Ubuntu 버전 wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh chmod -R 755 Miniconda3-latest-Linux-x86_64.sh ./Miniconda3-latest-Linux-x86_64.sh 미미니콘다 배쉬 명령어로 설치 $ bash Miniconda3-latest-Linux-x86_64.sh conda 가상환경 ..
버벌진트 - 편견
sys.modules과 built-in modules, sys.path의 구분 파이썬은 모듈/package를 1. sys.modules 2. built-in modules 3. sys.path 순서 대로 찾음 1. sys.modules 와 sys.path의 차이점 sys.modules - 파이썬이 제일먼저 모듈이나 패키지를 찾는곳 - 딕셔너리구조 - import 되있는 모듈과 패키지 저장 (다시 찾지 않아도 됨) sys.path - 모듈과 패키지를 1,2를 찾고 마지막으로 sys.path를 찾음 - 리스트구조(string 요소) - 처음의 리스트 요소부터 마지막까지 찾음 - 파이썬에 포함되어있는 built-in modules - sys.path에서도 모듈을 발견하지 못하면 ModuleNotFoundError 에러를 리턴 2. 파이썬은 sys 모듈의 위치를 어떻게 찾을 수 있을까요?..
SUMIN - Free Somebody (original song by LUNA of Fx)
Yeji-Raingurl
파이썬의 인자와 파라미터 그리고 다양한 종류 파라미터parameter : 함수 선언시 값을 받는 공간 예) def hi(a,b): return a+b 인자argument : 실제 함수 호출시 값을 입력하는 공간 # (positional arguments)라고도 한다. 예) hi(1,2) # 출력시 3나옴 키워드 인자 (keyword arguments) 실제 함수 호출시 파라미터에게 변수처럼 인자를 할당해서 사용하는법 인자 내의 파라미터명은 함수 선언시의 파라미터명과 같아야함 예) hi(a=1,b=2) 인자(positional arguments) & 키워드 인자 혼용 둘다 같이 사용이 가능하나 조건은 함수 정의시의 파라미터 위치와 인자의 순서가 일치하지 않으면 안된다. 예) hi(a=1,2) GOOD hi(b=1,1) SyntaxError: posi..
(Funky) Mura Masa & Yung Bae - I Bought My Girlfriend Omega Ruby For 3DS And She Called Me An Otaku 처음에 노래제목보고 놀랏지만 진짜 자주 들었던 좋은노래 무라마사 & 영배의 조합은 진리
(Chill Vive)The 1975 - Settle Down (young ruffian remix) A soft sound To the way that she wears her hair down Covering up her face And oh what a let down And I don't seem to be having any effect now Falling all over the place But you're losing your words We're speaking in bodies Avoiding me and talking 'bout you But you're losing your turn I guess I'll never learn 'Cause I stay another hour or two For crying out loud, settle down! You know I can't be ..