Ejemplo 1: ejecutar un comando en un script de Python
import os
os.system("ma Commande")
#Exemple:
os.system("cd Documents")
Ejemplo 2: ejecutar un archivo Python usando código Python
exec(open('file.py').read())
Ejemplo 3: comando de ejecución de Python
import os
os.system('cmd /k "Your Command Prompt Command"')
Ejemplo 4: ejecutar el programa Python desde la línea de comandos
# press [windows] + [R] (on windows only)
# use the command : cd/the_way_of_your_program
# and now use this command :
py the_name_of_your_program.py
# don't forget to write the extension (py for python)
# at the end of your program name
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)