摘要: nohup python xxx.py > nohup.log 2>&1 & 程序将于后台运行。 nohup /opt/work/web/xenwebsite/xenwebsite-env/bin/python2.7 > nohup.log 2>&1 runserver.py & nohup : 后 阅读全文
posted @ 2020-12-29 17:43 你的小可爱吖 阅读(1546) 评论(0) 推荐(0) 编辑
摘要: numpy.ndarray 的行和列进行基本操作 安装 NumPy 之后,导入它(NumPy 并不是 Python 标准库的一部分)。 pip install numpy 新建一个 0~11 的整数的 numpy.ndarry,然后把它打印出来。 a = numpy.arange(12) print 阅读全文
posted @ 2020-12-29 15:21 你的小可爱吖 阅读(3943) 评论(0) 推荐(0) 编辑