Curso de Programación en Python/PasandoArgumnetos-1

De WikiCabal
Ir a la navegación Ir a la búsqueda

PasandoArgumentos-1.py

1 #!/usr/bin/python3
2 #-*-coding: utf-8 -*-
3 
4 import sys
5 
6 print( 'Recibimos', len(sys.argv), 'argumentos.' )
7 print( 'Los argumentos son:', str(sys.argv) )

Resultado

[rrc@pridd PythonClase]$ ./PasandoArgumentos-1.py

Recibimos 1 argumentos.
Los argumentos son: ['./PasandoArgumentos-1.py']

[rrc@pridd PythonClase]$ ./PasandoArgumentos-1.py Arg1 -h -i = Ingreso

Recibimos 6 argumentos.
Los argumentos son: ['./PasandoArgumentos-1.py', 'Arg1', '-h', '-i', '=', 'Ingreso']

[rrc@pridd PythonClase]$ ./PasandoArgumentos-1.py Arg1 -h -i Ingreso

Recibimos 5 argumentos.
Los argumentos son: ['./PasandoArgumentos-1.py', 'Arg1', '-h', '-i', 'Ingreso']

[ rrc@pridd PythonClase]$ ./PasandoArgumentos-1.py Arg1 -h -i=Ingreso

Recibimos 4 argumentos.
Los argumentos son: ['./PasandoArgumentos-1.py', 'Arg1', '-h', '-i=Ingreso']