python 사용자 함수1 7일차 수업 | 사용자 함수~모듈 functionEx.py # 함수(function) # def 함수명(매개변수): # 함수 동작 소스코드 # return 반환데이터 def welcome(): print('Hello python') print('Nice to meet you') welcome() welcome() welcome() welcome() welcome() def make(material, count): bingsu = material + '빙수 ' print(bingsu) return bingsu + str(count) + '인분' print(make('딸기', 10)) print(make('인절미', 50)) #가변매개변수 def show(*args): print(type(args)) for item in args: prin.. 2021. 10. 4. 이전 1 다음