#coding=utf-8
# 函数
def foo(x):
print x
foo(123)
#
import httplib
def check_web_server(host,port,path):
h=httplib.HTTPConnection(host,port)
h.request('GET',path)
resp=h.getresponse()
print 'HTTP Reponse:'
print ' status=',resp.status
print ' reason=',resp.reason
print 'HTTP Headers:'
for hdr in resp.getheaders():
print ' %s:%s ' % hdr
check_web_server('www.python.org',80,'/')
相关文章
- 04-11python 代码片段20
- 04-11latex在vim中的代码片段
- 04-11python将两个数组合并成一个数组的两种方法的代码
- 04-11在Python中执行以下代码有什么问题?
- 04-11使用xi的Python lxml:包含多个Xml片段
- 04-11OS X和代码在Python中的“向上箭头”历史记录.InteractiveConsole
- 04-112017-12-20python全栈9期第五天第一节之昨日内容回顾和作业讲解之字母变大写
- 04-11Python简单的购物车小代码
- 04-11python – PyCUDA:设备代码中的Pow尝试使用std :: pow,失败
- 04-11python实现定时自动启动代码 线程方法(每日更新、爬虫等)