파이썬의 특징 및 명명 규칙에 대해 설명한다.
파이썬 연산자를 설명한다.
파이썬에서 비슷한 연산자의 차이점을 알아본다.
파이썬3에서 정수는 최소 28bytes의 int형으로 저장된다. C에서 int가 4byte이고 항상 Overflow를 신경써야 하는데 반해, 파이썬은 pip3부터 Arbitrary precision arithmetic를 채택해 메모리 공간 문제로부터 자유로워 졌다. A
파이썬의 Built-in 함수를 설명한다.
str.lower(): 모든 알파벳을 소문자로 변경한다.str.casefold(): 문자열 str의 모든 문자를 소문자로 변경한다. lower()과 다른 점은 영문자 외에 소문자가 존재하는 문자를 소문자로 변경하는 것이다.str.upper(): 문자열 str의 모든 알
참고자료object(객체)Any data with state (attributes or value) and defined behavior (methods). Also the ultimate base class of any new-style class.
Objectd의 정의Any data with state (attributes or value) and defined behavior (methods). Also the ultimate base class of any new-style class.특정한 상태(속성 또는
참고자료1
https://docs.python.org/3/reference/datamodel.htmlobject.\_\_new\_\_(cls\[, ...])Called to create a new instance of class cls. new() is a static
Python에서 Copy의 종류와 shallow copy, deep copy의 차이점을 알아본다.
파이썬에서 발생하는 오류를 정리한다.