SMALL Class1 Python) 학습 - 기본6일차(class) [ 18_class ] # everything is object ! 모든 것이 객체다! print(10) print("hello".upper()) # -> upper("hello") # 학생의 점수를 관리하는 학사관리 프로그램. def total(a, b, c): return a + b + c def average(tot, cnt): return tot / cnt name1 = "daniel" kor1 = 10 eng1 = 20 math1 = 30 tot1 = total(kor1, eng1, math1) # kor1 + eng1 + math1 avg1 = average(tot1, 3) # tot1 / 3 print(name1, tot1, avg1) name2 = "susan" kor2 = 20 eng2 .. 2022. 12. 22. 이전 1 다음 LIST