Python

[Python / 기초] 파이썬 변수 - Number, Boolean, None, String

씨주 2024. 1. 12. 07:06

📍 변수

: 변수이름 = 값

 

✅ 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살입니다.