How to use sys.argv in Python

您所在的位置:网站首页 dns解析过程分为哪两类方法 How to use sys.argv in Python

How to use sys.argv in Python

2022-05-08 16:37| 来源: 网络整理| 查看: 265

Command line arguments are those values that are passed during calling of program along with the calling statement. Thus, the first element of the array sys.argv() is the name of the program itself. sys.argv() is an array for command line arguments in Python. To employ this module named “sys” is used. sys.argv is similar to an array and the values are also retrieved like Python array.

The sys module

The sys module provides functions and variables used to manipulate different parts of the Python runtime environment. This module provides access to some variables used or maintained by the interpreter and to functions that interact strongly with the interpreter.

Examples:

# Python program to demonstrate# sys.argv    import sys  print("This is the name of the program:", sys.argv[0])  print("Argument List:", str(sys.argv))

Output:

sys.argv

The above program has been saved by the name “com.py” and thus has to be called in the following in command prompt

Functions that can be used with sys.argv

len()- function is used to count the number of arguments passed to the command line. Since the iteration starts with 0, it also counts the name of the program as one argument. If one just wants to deal with other inputs they can use (len(sys.argv)-1).str()- this function is used to present the array as a string array. Makes displaying the command line array easier and better.

Example:

# Python program to demonstrate# sys.argv    import sys    print("This is the name of the program:",       sys.argv[0])print("Number of elements including the name of the program:",       len(sys.argv))print("Number of elements excluding the name of the program:",      (len(sys.argv)-1))print("Argument List:",       str(sys.argv))

Output:

sys.argv

The following program performs addition using inputs given during runtime:

# Python program to demonstrate# sys.argv    import sys  add = 0.0  # Getting the length of command# line argumentsn = len(sys.argv)  for i in range(1, n):    add += float(sys.argv[i])  print ("the sum is :", add)

Output:

sys.argv

My Personal Notes arrow_drop_up


【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3