page=BeautifulSoup(page2)
self.response.out.write(page.title.string)
self.response.out.write("""<br />""")
mdays={}
mo={}
cost={}
ac={}
nc={}
month=(page.findAll('td',style="border-style: solid; border-width: 1px", align="RIGHT"))
mo[0]=(month[0].contents)
mdays[0]=month[1].contents
cost[0]=month[2].contents
nc[0] = month[4].contents
ac[0]=month[5].contents
self.response.out.write(mo[0].string)
第一个out.write语句打印标题,但其余的打印出Null Beautful Soup代码适用于IDLE,但不适用于AppEngine