λ€μ€ μμ • μ¬λ¬ κ°μ ν΄λμ€λ‘λΆν° μμλ°λ κ²½μ° νμ΄μ¬μ λ€μ€ μμμ μ§μνκ³ λΆλͺ¨ ν΄λμ€μ λμΌν λ©μλλ μμ±μ΄ μμ λλ μΌμͺ½μμλΆν° μ°μ κΆ μ λΆμ¬ νλ€. μμ ) #1 μμ class Person: def greeting(self): print('μλ
νμΈμ.') class University: def manage_credit(self): print('νμ κ΄λ¦¬') class Undergraduate(Person, University): def study(self): print('곡λΆνκΈ°') sunja = Undergraduate() sunja.greeting() sunja.manage_credit() sunja.study() #2 μμ class Person: def sleep(self): pr..
[Python] λ€μ€μμ, μΆμν΄λμ€
λ€μ€ μμ • μ¬λ¬ κ°μ ν΄λμ€λ‘λΆν° μμλ°λ κ²½μ° νμ΄μ¬μ λ€μ€ μμμ μ§μνκ³ λΆλͺ¨ ν΄λμ€μ λμΌν λ©μλλ μμ±μ΄ μμ λλ μΌμͺ½μμλΆν° μ°μ κΆ μ λΆμ¬ νλ€. μμ ) #1 μμ class Person: def greeting(self): print('μλ
νμΈμ.') class University: def manage_credit(self): print('νμ κ΄λ¦¬') class Undergraduate(Person, University): def study(self): print('곡λΆνκΈ°') sunja = Undergraduate() sunja.greeting() sunja.manage_credit() sunja.study() #2 μμ class Person: def sleep(self): pr..
2020.11.24