Ejercicio
Parámetros E Inversión De La Función Principal
Objectivo
Desarrolle un programa Python llamado "reverse" que tome varias palabras de la línea de comandos y las imprima en orden inverso. Por ejemplo:
reverse one two three three two one
Ejemplo de ejercicio de Python
Mostrar código Python
import sys
# Define the reverse function
def reverse():
# Get the arguments from the command line (skipping the script name)
words = sys.argv[1:]
# Reverse the list of words
reversed_words = words[::-1]
# Print the reversed words
print(" ".join(reversed_words))
# Main function to run the program
if __name__ == "__main__":
reverse()
Output
python reverse.py one two three
three two one
Código de ejemplo copiado
Comparte este ejercicio de Python