gpt4 book ai didi

python - 如何修复 IndentationError : unexpected indent in python script

转载 作者:行者123 更新时间:2023-11-28 22:23:56 28 4
gpt4 key购买 nike

<分区>

我的 python 代码有问题。我认为我使用了正确的 python 结构,但它一直向我显示(意外的缩进错误)

class TopGamesPostPage(Handler):
def get(self):
self.render("topgamespost.html")

def post(self):
title = self.request.get('title')
info = self.request.get('info')

if title and info: --> unexpected indent error
p = Post(parent = blog_key(), title = title, info=info)
p.put()
self.redirect('/topgames/%s' % str(p.key().id()))
else:
error = "subject and content, please!"
self.render("topgamespost.html", title=title, info=info, error=error)

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com