전달값, 변환값- 새로운 계좌 생성하고 입금,출금,수수료def open_account(): print("새로운 계좌가 생성되었습니다.")open_account() 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..