status

草稿

清风; 100%

TableOfContents

web.py

web.py 食谱

Hello World!

命题

怎么使用web.py 写个hello world?

解决

   1 import web
   2 
   3 urls = ("/.*", "hello")
   4 app = web.application(urls, globals())
   5 
   6 class hello:
   7     def GET(self):
   8         return 'Hello, world!'
   9 
  10 if __name__ == "__main__":
  11     app.run()

练习

-- 清风 DateTime(2008-04-25T14:33:00Z)