“argc python” Código de respuesta

pasar argumento a un archivo py

import sys

def hello(a,b):
    print "hello and that's your sum:", a + b

if __name__ == "__main__":
    a = int(sys.argv[1])
    b = int(sys.argv[2])
    hello(a, b)
# If you type : py main.py 1 5
# It should give you "hello and that's your sum:6"
Impossible Iguana

argc python

len(sys.argv)
Crazy Crossbill

Respuestas similares a “argc python”

Preguntas similares a “argc python”

Más respuestas relacionadas con “argc python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código