您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
335B

  1. def application(environ, start_response):
  2. """Simplest possible application object"""
  3. data = str.encode('Hello, World!\n')
  4. status = '200 OK'
  5. response_headers = [
  6. ('Content-type','text/plain'),
  7. ('Content-Length', str(len(data)))
  8. ]
  9. start_response(status, response_headers)
  10. return iter([data])