Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

게임 제작 마스터 클래스

파이썬 수업노트 no. 5 | 연산과 형변환 본문

파이썬

파이썬 수업노트 no. 5 | 연산과 형변환

엔류 ENRU 2020. 3. 18. 22:51


연산과 형변환


​대입연산,

type() 함수,

int, float, complex,

+=, -=, *=, /=

math module: ceil, floor


a = 5. b = 4 c = 10 print(type(a), type(b)) result2 = a + b print(result2) # 형변환 # int, float, complex(복소수) print(int(result2)) print(float(c)) print(complex(3)) print(int(True)) print(int(False)) print(int('3')) print(complex(False)) y = 100 y *= 100 print(y) # 수치 연산 함수 # https://docs.python.org/3/library/math.html print(abs(-7)) n, m = divmod(100, 8) print(n, m) import math print(math.ceil(5.1)) print(math.floor(3.874))


#문자형 관련 연산자

문자열 생성 길이

이스(Escape Sequence)

문자열 연산

문자열 형 변환

문자열 함수

문자열 슬라이싱

#파이썬 자료구조

리스트(list), 튜플(tuple)

딕셔너리(dictionary), 셋(집합 set)

#IF(조건문)

관계연산자 >, >=, <, <=, ==

논리 연산자 and, or, not

다중 조건문 if, elif, else

중첩 조건문

참, 거짓, 종류

#For, While

파이썬 코딩의 핵심

시퀀스 타입 반복

Continue, Break

For - else 구문

자료구조 변환

#함수 정의 및 람다( lambda ) 사용

함수 선언

함수 다양한 사용

다양한 반환 값

*args, **kwargs

람다 함수

# 클래스 선언 및 Self의 이해

클래스 선언

클래스 네임스페이스 Self

클래스, 인스턴스 변수

Self

# 클래스 상속, 다중 상속

클래스 상속

클래스 상속 예제 코디

클래스 다중 상속

# 모듈, 패키지

패키지 설정

모듈 사용 및 Alias 설정

패키지 사용장점

Comments