import http.client conn = http.client.HTTPSConnection("www.example.com") conn.request("GET", "/") r1 = conn.getresponse() print(r1.status, r1.reason).
確定! 回上一頁