“Argumentos de Python” Respostas de código

Python Obtenha argumentos da linha de comando

import sys
print("This is the name of the script:", sys.argv[0])
print("Number of arguments:", len(sys.argv))
print("The arguments are:" , str(sys.argv))

#Example output
#This is the name of the script: sysargv.py
#Number of arguments in: 3
#The arguments are: ['sysargv.py', 'arg1', 'arg2']
Amused Albatross

Passe o argumento para um arquivo 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

Argumentos de leitura de Python

#!/usr/bin/python

import sys

print('Number of arguments:', len(sys.argv), 'arguments.')
print('Argument List:', str(sys.argv))
Sasso

Argumentos de Python

import sys

print ("the script has the name %s" % (sys.argv[0])
Common Melba Finch

Argumentos da função python

def greet(name, msg):
    """This function greets to
    the person with the provided message"""
    print("Hello", name + ', ' + msg)

greet("Monica", "Good morning!")
SAMER SAEID

Respostas semelhantes a “Argumentos de Python”

Perguntas semelhantes a “Argumentos de Python”

Mais respostas relacionadas para “Argumentos de Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código