python 命令行 参数_Python命令行参数

python 命令行 参数

Python Command line arguments are input parameters passed to the script when executing them. Almost all programming language provide support for command line arguments. Then we also have command line options to set some specific options for the program.

Python命令行参数是执行它们时传递给脚本的输入参数。 几乎所有的编程语言都支持命令行参数。 然后,我们还有命令行选项可以为程序设置一些特定选项。

Python命令行参数 (Python Command Line Arguments)

There are many options to read python command line arguments. The three most common ones are:

有很多选项可以读取python命令行参数。 三种最常见的是:

  1. Python sys.argv

    Python sys.argv
  2. Python getopt module

    Python getopt模块
  3. Python argparse module

    Python argparse模块

Let’s look through simple program to learn how to read and use python command line arguments.

让我们看一个简单的程序,以学习如何阅读和使用python命令行参数。

你可能感兴趣的:(编程语言,python,linux,java,机器学习)