Last active
August 29, 2015 14:00
-
-
Save sota1235/11212122 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| while True: | |
| print "借りる値段を入力してね٩(ˊᗜˋ*)و" | |
| n = input('> ') | |
| month = n * (1.1 ** 3) | |
| year = n * (1.1 ** 36) | |
| five_month = n * (1.1 ** (36 * 5)) | |
| print "1ヶ月で{}円, 1年で{}円, 5年で{}円かかるよ(,,Ծ‸Ծ,, )\n".format(int(month),int(year),int(five_month)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment