使用python3的http.server模块要注意的问题

在学习python的web开发时,首先使用了python3中内建的HTTP servers。html 使用以下代码:python from http.server import HTTPServer, CGIHTTPRequestHandler port = 8080 httpd = HTTPServer(('', port), CGIHTTPRequestHandler) print("St
相关文章
相关标签/搜索