摘要: 查看python安装路径的方法有很多,如: 方法一: whereis python 查看所有python的路径 方法二: which python 查看当前使用的python路径 方法三:Bash进入Python交互模式,输入如下代码: import sys print sys.path 打印所有p 阅读全文
posted @ 2020-11-12 02:52 1769987233 阅读(788) 评论(0) 推荐(0)
摘要: 下面一段代码,实现了最简单的 Web 服务器: // main.go package main import ( "fmt" "log" "net/http" ) // 处理主页请求 func index(w http.ResponseWriter, r *http.Request) { // 向客 阅读全文
posted @ 2020-11-12 01:49 1769987233 阅读(552) 评论(0) 推荐(0)