-
Python Iterable
Python 공문에서 Iterable 이란?[1] An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as list, str, and tuple) and some non-sequence types like dict, file objects, and objects of any classes you define with an iter() method or with a getitem() method that implements Sequence semantics. It... Read More
-
Python Ellipsis
Ellipsis 의 정의[1] The same as the ellipsis literal 《…》. Special value used mostly in conjunction with extended slicing syntax for user-defined container data types. Ellipsis is the sole instance of the types.EllipsisType type. 줄임표 리터럴 《…》과 동일합니다. 사용자 정의 컨테이너 데이터 유형에 대한 확장 슬라이싱 구문과 함께 주로 사용되는 특수 값입니다. Ellipsis는 types.EllipsisType 유형의 유일... Read More
-
Python Collection
Python Collection 이란?[1] 파이썬 내장 컨테이너인 dict, list, set 및 tuple에 대한 대안을 제공하는 특수 컨테이너 데이터 형을 구현한다. 객체 설명 namedtuple() 이름 붙은 필드를 갖는 튜플 서브 클래스를 만들기 위한 팩토리 함수 deque 양쪽 끝에서 빠르게 추가와 삭제를 할 수 있는 리스트류 컨테이너 ChainMap 여러 매핑의 단일 뷰를 만드는 딕셔너리류 클래스 Count... Read More
-
Python Built-in Constants(내장 상수)
상수란? 정상수가 아니다. 프로그램 언어를 처음 배울 때 책 앞부분에 나오는 단어로서, 컴퓨터공학을 전공한 사람들은 너무나도 익숙한 단어일 것이다. wikipedia[1] 상수(常數, constant)란 수식에서 변하지 않는 값을 뜻한다. 이것은 변하는 값 변수와 반대이다. wikidocs[2] 상수(constant)는 항상 똑같은 값을 저장하고 있는 곳이라 할 수 있습니다. 프로그래머나 시스템에 의해 미리 정해져있는 것으로, 복잡한 숫자의 값을 인지하기 쉬운 문자로 변경하여 사용하고자 할 때 주로 사용합니다. 내장 상수란?[3] A small number of constants live i... Read More
-
Pandas 기초
Pandas는 언제 그리고 왜 쓰일까 When working with tabular data, such as data stored in spreadsheets or databases, pandas is the right tool for you. pandas will help you to explore, clean, and process your data. In pandas, a data table is called a DataFrame.[1] 스프레드시트나 데이터베이스에 저장된 데이터와 같은 표 형식의 데이터로 작업할 때 판다는 사용자에게 적합한 도구입니다. 판다들은 여러분이 데이터를 탐색하고, ... Read More
-
Pandas Series
Series 객체 [1] 기본 1차원 pandas 데이터 구조. 축 레이블이 있는 1차원 ndarray 객체이다. 매개변수 pandas.Series(data=None, index=None, dtype=None, name=None, copy=False, fastpath=False) data : array, Iterable, dict, scalar를 사용가능하다. dict일 경우 인수 순서가 유지된다. DataFrame Method DataFrame.head() [2] 처음부터 n개 까지의 행을 반환한다. 매개변수 DataFrame.head(n) n : int, default 5 반... Read More
-
직장에서 대화에 실패하는 이유
6가지 자동적 생각 판단 비난 강요 비교 당연시 합리화 자동적 생각을 사실로 근거하여 대화를 시작하면, 상대와의 갈등은 깊어지고 대화에 실패하게 된다. 자동적 생각을 하게되는 이유 나보다 힘이 있는 사람일 경우, 말은 하지 못하고 마음속에서 작동하게 되는데 뇌 속의 변연계(감정을 조절하는 뇌의 일부 , 림빅 시스템(Limbic system) 는 그 사람을 부정적인 정서(적 이미지, Enemy Image)로 강하게 남게된다. 대화를 잘하는 사람의 사고방법 자신의 감정을 어떻게 받아들여아할까 감정을 억압하려하지말고, 자기감정을 더 명확하게 인식하려고 노력한다. 감정의 원인을 ... Read More