Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LESS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
princeton-nlp
LESS
Commits
12456064
Commit
12456064
authored
1 year ago
by
xiamengzhou
Browse files
Options
Downloads
Patches
Plain Diff
update
parent
660680ce
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test.py
+0
-17
0 additions, 17 deletions
test.py
with
0 additions
and
17 deletions
test.py
deleted
100644 → 0
+
0
−
17
View file @
660680ce
import
argparse
# Create the parser
parser
=
argparse
.
ArgumentParser
(
description
=
"
Example script.
"
)
# Add the argument
# The '+' sign means "one or more".
# The parser will expect at least one value, and all values will be gathered into a list.
parser
.
add_argument
(
"
--mylist
"
,
nargs
=
'
+
'
,
type
=
int
,
help
=
"
A list of integer values
"
,
default
=
[
1
,
2
,
3
])
parser
.
add_argument
(
"
--mylist2
"
,
type
=
int
,
help
=
"
A list of integer values
"
,
default
=
2
)
# Parse the arguments
args
=
parser
.
parse_args
()
# Access the argument values (which will be a list)
print
(
args
.
mylist
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment