본문 바로가기

python3

파이썬 객체 대학생때 컴퓨터공학을 배우면서 C++, C#, JAVA등 여러 프로그래밍 언어를 배우면서 기본적인 프로그래밍 언어에대한 개념들을 익혔다. 최근 몇년간은 주로 Python을 쓰면서 다른 언어에대해 많이 잊었긴 하지만, 그 개념은 어느정도 유사하다고 생각한다. 그러나 파이썬에도 다른언어와는 다른 파이썬만의 문법이 있을것이고, 이러한 특징에대해 새로이 알게된(이미 아시는분들도 많은 기본적인 것일 수 있지만) 파이썬의 특징에대해 정리하고자 한다. 순수 객체 지향 Python에는 원시 타입(Primitive Type)이 존재하지 않으며, 모든 것이 객체로 취급된다. 나아가 클래스, 함수 역시 객체로 취급할 수 있다. 상수 역시 상수가 저장된 객체라고 본다. 다음과 같은 상수 할당문이 있을 때, x = 10 이는 .. 2023. 2. 28.
(문법) Pandas Grouper Pandas Grouper API class Grouper: """ A Grouper allows the user to specify a groupby instruction for an object. This specification will select a column via the key parameter, or if the level and/or axis parameters are given, a level of the index of the target object. If `axis` and/or `level` are passed as keywords to both `Grouper` and `groupby`, the values passed to `Grouper` take precedence. P.. 2021. 5. 5.
(문법) Asterisk - * / ** Asterisk *args 파라미터를 몇개 받을지 모르는 경우 사용하며, args는 튜플 형태로 전달된다. def func(*args): print(args) for a in args: print(a) func('a','b','c','d') #('a','b','c','d') #a #b #c #d **kwargs 파라미터 명을 같이 보낼 수 있다. kwargs는 딕셔너리 형태로 전달된다. def func2(**kwargs): print(kwargs) print(kwargs.keys()) print(kwargs.values()) for key, value in kwargs.items(): print(f'{key}:{value}') func2(one=1,two=2,three=3) # key값을 문자열로 주면 .. 2021. 4. 29.