reload (update) a module file in the interpreter

后端 未结 3 1095
抹茶落季
抹茶落季 2020-12-15 23:35

Let\'s say I have this python script script.py and I load it in the interpreter by typing

import script

and then I execute my

3条回答
  •  难免孤独
    2020-12-16 00:00

    http://docs.python.org/library/functions.html#reload

    reload(module)

    Reload a previously imported module. The argument must be a module object, so it must have been successfully imported before. This is useful if you have edited the module source file using an external editor and want to try out the new version without leaving the Python interpreter. The return value is the module object (the same as the module argument).

提交回复
热议问题