### 함수, 전달값과 반환값def open_account(): print('새로운 계좌가 생성되었습니다.')def deposit(balance, money): print('입금이 완료되었습니다. 잔액은 {0}입니다.'.format(balance+money)) return balance + moneydef withdraw(balance, money): if balance >= money: print('출금이 완료되었습니다. 잔약은 {0}원 입니다.'.format(balance-money)) return balance - money else: print('출금이 완료되지 않았습니다. 잔약은 {0}원 입니다.'.format(balance)) ..