"""实战四:根据总步数计算消耗的热量值"""
Step_Number = int(input("请输入当天行走的步数!\n")) #输入步数
print("今天共消耗卡路里:" + str(Step_Number * 28) + " (即" + str(Step_Number * 28 / 1000) + "千卡)") #消耗热量
标签:实战,热量,28,消耗,Number,Step,str,步数
来源: https://www.cnblogs.com/zhangfurong/p/15228216.html