随笔分类 - python
摘要:#安装pip python2.7版本: curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py python get-pip.py #安装psutil模块 pip install psutil
阅读全文
摘要:
阅读全文
摘要:nohup /bin/python -u main.py >a.log & 2>&1
阅读全文
摘要:模块 python struct name == 'main' __name__ 是当前模块名,当模块被直接运行时模块名为__main__。意思是,当模块被直接运行时,下面的代码块将被运行,当模块是被导入时,代码块不被运行 例子 #综合案例 - 猜丁壳 from random import rand
阅读全文