📍 변수
: 변수이름 = 값
✅ Number
- int : 정수
- float : 소수
- complex : 허수
- 변수.imag : 허수부분
- 변수.real : 실수부분
: type() 변수타입 출력
a = 1000
type(a) # int
b = 1.1
type(b) # float
c = 1 - 4j
type(c) # complex
c.imag # -4.0
c.real # 1.0
✅ Boolean
: True(1), False(0)로 이루어진 타입
a = True
b = False
type(a) # bool
type(b) # bool
✅ None
: 데이터가 없음을 의미
a = None
type(a) # NoneType
✅ String
: 문자열은 ', "를 이용하여 표현
a = 'hello'
type(a) # str
✔️ string interpolation
: 자리표시자(값을 줄 수 있는 변수)를 넣어 데이터를 표현
- % formatting
- .format()
- f-string
age = 10
print('홍길동은 %s살입니다.'% age) # 홍길동은 10살입니다.
print('홍길동은 {}살입니다.' .format(age)) # 홍길동은 10살입니다.
print(f'홍길동은 {age}살입니다.') # 홍길동은 10살입니다.
'Python' 카테고리의 다른 글
[Python / 기초] 파이썬 함수 - 선언, 호출, 인자, lambda, 재귀 (0) | 2024.01.12 |
---|---|
[Python / 기초] 파이썬 반복문 - while문, for문, break, continue, else, pass, match (0) | 2024.01.12 |
[Python / 기초] 파이썬 제어문 - if, elif, else (0) | 2024.01.12 |
[Python / 기초] 파이썬 자료구조 - List, Tuple, Range, Set, Dictionary (0) | 2024.01.12 |
[Python / 기초] 파이썬 연산자 - 산술연산자, 비교연산자, 논리연산자, 복합연산자, 형변환 (0) | 2024.01.12 |