Entrez en mode interactif après avoir exécuté un script avec l'option -i de Python

$ python -i script.py

Vous pouvez démarrer le mode interactif directement après avoir exécuté script.py en ajoutant l'indicateur -i.

Exemple

scripts.py


import numpy as np

def double_list(a):
    b =  np.array(a) * 2
    return b.tolist()

x = 'Hello'
$ python -i script.py
>>> double_list([1,2,3])
[2, 4, 6]
>>> print(x)
Hello

Recommended Posts

Entrez en mode interactif après avoir exécuté un script avec l'option -i de Python
Étendre le mode interactif de Python
Exécution du script au démarrage avec ipython