Study-Notes icon indicating copy to clipboard operation
Study-Notes copied to clipboard

Python 3 和 2 的区别

Open ccc013 opened this issue 5 years ago • 0 comments

模块名字的变化

BaseHTTPServer 和 http.server

try:
    # python3
    from http.server import BaseHTTPRequestHandler, HTTPServer
except:
    from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer

SocketServer 和 socketserver

try:
    # python3
    import socketserver
except:
    import SocketServer

ccc013 avatar May 27 '19 06:05 ccc013