나도코딩 강의를 듣고 복습의 의미로 작성하였습니다. 실제 강의 내용이나 예제와 다를 수 있습니다. 함수 1. 전달값과 반환값 - def 정의 만 가능, 호출 전까진 실행되지 않음 def open_account(): print("새로운 계좌가 생성되었습니다.") open_account() def deposit(balance, money): print("입금이 완료되었습니다. 잔액은 {0} 원입니다." .format(balance + money)) return balance + money balance = 0 balance = deposit(balance, 1000) print(balance) def withdraw(balance, money): if balance >= money: print("출금이 완료..