介绍
这篇文章记录了我在学习过程中用到的在命令行中跟python有关的操作
# python //打开pyhton
# exit() //退出python
python ---version
或python -V
输出python的版本
python -h
或python --help
打印帮助信息
pip install xxxxx
安装第三方库
python -m http.server [port]
创建http服务器,默认端口是8000
这篇文章记录了我在学习过程中用到的在命令行中跟python有关的操作
# python //打开pyhton
# exit() //退出python
python ---version
或python -V
输出python的版本
python -h
或python --help
打印帮助信息
pip install xxxxx
安装第三方库
python -m http.server [port]
创建http服务器,默认端口是8000