# sys library
## `import sys`
### Using `argv`
The most significant thing here is argv - takes in the input from the command line to input this into your code
`print(sys.argv)` - prints out a list of strings
Usually be asked to use this if you need to take in the standard input from the command line