如何删除python 3

时间:2017-10-25 18:59:44

标签: python space sentence

我有以下代码

nsum = 1+3+4

print("your total Calorie count is",nsum,".")

当我使用python 3.6

运行脚本时

打印出your total Calorie count is 8 .

但我想在nsum之后打印没有空格的句子。 像这样:

your total Calorie count is 8.

我该怎么办?

1 个答案:

答案 0 :(得分:1)

nsum = 1+3+4

print("your total Calorie count is %d." % nsum)

有关格式化的详情,请参阅this page