start pythonw xxx.py
控制台输出导向nohup.out文件
nohup python xxx.py &
如果要重定向输出,可以这样
nohup python -u xxx.py > out.log 2>&1 &