νμ΄μ¬μΌλ‘ ν μ€νΈ, μ«μ, μ°Έ/κ±°μ§μ νννλ λ°©λ²
μμ μκ°ν κ²μ²λΌ νμ΄μ¬μ λ€μν λ°μ΄ν°λ₯Ό λ€λ£¨λ μ¬λ¬ μλ£νμ μ 곡ν©λλ€.
μ΄ μ€ κ°μ₯ κΈ°μ΄μ μΈ μλ£νμΈ λ¬Έμμ΄(String)
, μ«μ(Number)
, λΆλ¦¬μΈ(Boolean)
μ λν΄ μμλ³΄κ² μ΅λλ€.
λ¬Έμμ΄(String)
λ¬Έμμ΄μ ν μ€νΈ λ°μ΄ν°λ₯Ό λνλ΄λ©°, λ¬Έμμ΄μ λ¬Έμμ μ°μμΌλ‘ ꡬμ±λ©λλ€.
λ¬Έμμ΄μ ν°λ°μ΄ν("")
λλ μμλ°μ΄ν('')
λ‘ λλ¬μΈμ¬ μμΌλ©°, ν° λ°μ΄νμ μμ λ°μ΄ν μ¬μ΄μλ κΈ°λ₯μ μ°¨μ΄κ° μμ΅λλ€.
greeting = "μλ νμΈμ!" name = 'μ½λνλ μ¦'
μ«μ(Number)
μ«μν μλ£νμ ν¬κ² μ μν(int
)κ³Ό μ€μν(float
)μΌλ‘ λλ©λλ€.
age = 30 # μ μν temperature = 98.6 # μ€μν
λΆλ¦¬μΈ(Boolean)
λΆλ¦¬μΈ μλ£νμ μ°Έ(True
)κ³Ό κ±°μ§(False
)μ λ κ°μ§ κ°λ§μ κ°μ§ μ μλ μλ£νμ
λλ€.
λΆλ¦¬μΈμ μ£Όλ‘ μ‘°κ±΄λ¬Έκ³Ό λ Όλ¦¬ μ°μ°μ μ¬μ©λ©λλ€.
is_active = True is_new_user = False if is_active and is_new_user: print("νμν©λλ€!") else: print("λ€μμ λ λ΄μ!")
κ°λ¨ν λ°μ΄ν° νμ μμ
μλ μ½λλ₯Ό μμ±νμ¬ λ¬Έμμ΄, μ«μ λ° λΆλ¦¬μΈ κ°μ μΆλ ₯νμΈμ. μμ μΆλ ₯κ°μ Hello, age is 25 and active status is True
μ
λλ€.
greeting = "Hello"
age = 25
is_active = True
print(f"{
}, age is {
} and active status is {
}")
Guidelines
AI Tutor
Publish
Design
Upload
Notes
Favorites
Help
Code Editor
Execution Result