如何使用Flask在网页中单行显示消息?我尝试了以下方法:
lines=sent_tokenize(s)
sentence_count=len(lines)
flash("no of sentences :",sentence_count)
但是不显示sentence_count
。
不完全确定这是否正确,因为我缺少很多上下文,但是请尝试下面的方法
lines=sent_tokenize(s)
sentence_count=len(lines)
flash("no of sentences: %d" % sentence_count)
因为flash
似乎将字符串作为第一个参数,并且len
返回整数,所以将sentence_count
放在"no of sentences"
字符串内
虽然使用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}'