Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
19 lines (18 loc) · 736 Bytes

File metadata and controls

19 lines (18 loc) · 736 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""Example of how to use argparse lib properly."""
# Author: James Campbell
# Date: 2016-06-09
# Date Updated: 3 July 2019
# What: Example of how to use argparse moduel properly (Python3)
import argparse
parser = argparse.ArgumentParser(
description="Example on how to use argparse", prog="argparse example"
)
parser.add_argument("-a", action="store_false", default=None, help="Turn A off")
parser.add_argument("+a", action="store_true", default=None, help="Turn A on")
parser.add_argument("-v", "--version", action="version", version="VERSION 2.0")
parser.add_argument("--verbose", action="store_true", help="verbose flag")
args = parser.parse_args()
if args.verbose:
print("~ Very Verbose!")
else:
print("~ Not verbose")
Morty Proxy This is a proxified and sanitized view of the page, visit original site.