Menu Close

How to access command line arguments with Python?

Sometimes, we want to access command line arguments with Python.

In this article, we’ll look at how to access command line arguments with Python.

How to access command line arguments with Python?

To access command line arguments with Python, we can use the sys.argv property.

For instance, we write

import sys

print(sys.argv)

to print out all the command line arguments in a list with print and sys.argv.

Conclusion

To access command line arguments with Python, we can use the sys.argv property.

Posted in Python, Python Answers