已粗略結(jié)束這本書的學(xué)習(xí)
ex50
if __name__ == "__main__":?
兩個_ _連在一起
1. 創(chuàng)建 templates/Index.html?#edtion 4th瞻讽,此處有誤“index”#
2.app.py
import web?
urls = (?
? ? '/', 'Index'?
?)?
?app = web.application(urls, globals())?
?render = web.template.render('templates/')?
?class Index(object):?
? ? def GET(self):?
? ? ? ? greeting = "Hello World"
? ? ? ? return render.Index(greeting = greeting) ?#edtion 4th穆趴,此處有誤“index”#
if __name__ == "__main__":?
?app.run()