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
| # | |
| # Instructions for making hybrid GPT/MBR boot USB thumb drive. | |
| # The Slackware Linux installer will be added to the image as an example, | |
| # however the syslinux configuration can be modified to include any desired | |
| # image. | |
| # | |
| # A USB thumb drive formatted with these instructions was able to | |
| # boot the Slackware Installer on a: | |
| # | |
| # Dell Latitude E6430 in Legacy BIOS mode |
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
| import click | |
| @click.command() | |
| @click.option("--age", type=int, default=24, help="你当前的年龄") | |
| @click.option("--asset", type=float, default=0, help="上一年年末总资产") | |
| @click.option("--salary", type=float, default=200000, help="预计今年年工作收入") | |
| @click.option("--salary-rate", type=float, default=0.1, help="预计工作收入年增长率") | |
| @click.option("--invest", type=float, default=10000, help="预计今年投资收入") | |
| @click.option("--invest-rate", type=float, default=0.1, help="预计投资收入年增长率") | |
| @click.option("--expense", type=float, default=90000, help="预计今年支出") |
OlderNewer