[Python] Verwendung von import sys sys.argv

Umgebung

linux python

Python-Code

Der Code ist als Beispiel wie folgt.

practice.py


import sys

a = sys.argv

print(a)

Eingabeaufforderung

Führen Sie den folgenden Befehl aus

$ python3 practice_home.py linux windows abc
['practice_home.py', 'linux', 'windows', 'abc']

Dann wird __ ['praxis_home.py', 'linux', 'windows', 'abc'] __ wie oben ausgegeben.

Das heißt, sys.argv enthält __ $ pyton3__ __ Zeichen </ font> __.

Recommended Posts