问答详情
源自:3-6 实现博客数据返回页面

返回的字符串为什么需要模上(title,...,publish_date)

return_str = 'title: %s, beief_content: %s,'\
             'content: %s, article_id: %s, publish_date: %s' % (title,
                                                           beief_content,
                                                           content,
                                                           article_id,
                                                           publish_date)


提问者:qq_宝慕林11477 2019-04-13 22:12

个回答

  • 慕风火
    2019-09-04 17:40:35

    这是字符替换,也可以用format方法实现.

  • 郝漫
    2019-04-14 08:59:19

    与print同理吧。