복리계산코드1 [복기] 파이썬 복리이자 계산 # 정답코드 money = int(input('금액 입력: ')) rate = float(input('이율 입력: ')) term = int(input('기간 입력: ')) targetMoney = money # for문에서 변수로써 활용이 되는 i를 굳이 사용하지 않더라도, term이라고 ()안에 들어간 숫자만큼 # 반복되는건 처음알게 된것같다. for i in range(term): targetMoney += targetMoney * rate * 0.01 # 이것을 아래 print formating 까지 써서 넣어봤는데 에러가 계속 뜨더라; targetMoneyFormated = format(int(targetMoney),',') print('-'*30) print('이율: {}%'.format(ra.. 2022. 4. 30. 이전 1 다음