标签: python string google-app-engine email
我在GAE Python中尝试了以下内容,以获取我想要稍后存储的用户电子邮件ID的字符串:
emailstr = (str(user.email()))
但该应用程序无法运行。
如何获取user.email()的字符串表示形式?
我看到了this documentation of User class at GAE doc site,但在那里找不到所需的信息。