1cc996af7d5ec677a9a3a59cf303a571b071d2a1
python3/argparse/-\343\202\222\345\220\253\343\202\200\343\202\252\343\203\227\343\202\267\343\203\247\343\203\263\343\201\253\343\201\244\343\201\204\343\201\246.md
... | ... | @@ -0,0 +1,14 @@ |
1 | +[python - Having options in argparse with a dash - Stack Overflow](https://stackoverflow.com/questions/12834785/having-options-in-argparse-with-a-dash) |
|
2 | + |
|
3 | +`--fuga-hoge`のようなオプションを作る場合、以下のようにアクセスできる。 |
|
4 | + |
|
5 | +```python3 |
|
6 | +import argparse |
|
7 | + |
|
8 | +parser = argparse.ArgumentParser() |
|
9 | +parser.add_argument("--fuga-hoge") |
|
10 | +args = parser.parse_args() |
|
11 | + |
|
12 | +print(args.fuga_hoge) |
|
13 | +``` |
|
14 | + |