Файл повторного перезагрузки после изменения Python

import os
import sys
os.execv(sys.executable, ['python'] + sys.argv)
The Coding Master