0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Pythonの -i フラグでスクリプト実行後にインタラクティブモードに入る

Posted at
$ python -i script.py

-i フラグをつける事でscript.pyを実行後に直接インタラクティブモードを開始できる。

#例

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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?