Example analysis of SYS.ARGV parameter usage in Python

Source: Internet
Author: User
Tags readfile in python

This example describes the use of SYS.ARGV parameters in Python. Share to everyone for your reference. The specific analysis is as follows:

In the process of learning Python, I have been confused about the meaning of sys.argv[, although I know it is a command-line argument, but I still have a bit of a muddle.

Today, a good study, finally is Taichetaiwu.

Sys.argv[] is used to get command-line arguments, Sys.argv[0] represents the file path of the code itself, so the arguments start at 1, and the following two examples illustrate:

1, the use of sys.argv[] a simple example

?

1 2 Import Sys,os Os.system (sys.argv[1])

This example Os.system receive command line parameters, run parameter instructions, save as sample1.py, command line with parameters run sample1.py Notepad, will open Notepad program.

2, this example is the concise Python tutorial, understand it after you understand sys.argv[].

?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 The

The Save program is sample.py. Let's verify:

Command line with parameter run: Sample.py–version output: Version 1.2

Command line with parameter run: Sample.py–help output result: This program prints files ...

In the same directory as sample.py, create a new a.txt Notepad file, which reads: Test argv; command line with parameters run: sample.py a.txt, Output is a.txt file content: Test argv, here can also take a few more parameters, The program will output the contents of the parameter file successively.

I hope this article will help you with your Python programming.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.