class Personel(db.Model):
ismarried=db.StringProperty()
class AddPersonal(webapp.RequestHandler):
def get(self):
per=Personal()
#i want use a function at below, instead of per.ismarried
per.whatisthisfunction("ismarried")="yes"
per.put
文字列をエンティティのプロパティに変換したい。上記のようにできますか。