在网页中以单行显示消息

问题描述 投票:0回答:2

如何使用Flask在网页中单行显示消息?我尝试了以下方法:

    lines=sent_tokenize(s)
    sentence_count=len(lines)

    flash("no of sentences :",sentence_count)

但是不显示sentence_count

flash display using
2个回答
0
投票

不完全确定这是否正确,因为我缺少很多上下文,但是请尝试下面的方法

lines=sent_tokenize(s)
sentence_count=len(lines)

flash("no of sentences: %d" % sentence_count)

因为flash似乎将字符串作为第一个参数,并且len返回整数,所以将sentence_count放在"no of sentences"字符串内


0
投票

虽然使用python 3.7.6,但有多个选项可以做到这一点

"no of sentences: {0}".format(sentence_count)
"no of sentences: {count}".format(count=sentence_count)
"no of sentences: %d" % sentence_count # %d for int, %s for string
f'no of sentences: {sentence_count}'
© www.soinside.com 2019 - 2024. All rights reserved.