如何在 python 中的字符串(句子)中打印函数返回的字典输出? (加工)

How to print a returned dictionary output from a function inside a string(a sentence) in python? (Processing)

我正在创建一个程序,通过采用以下输入来计算一顿饭的总费用: meal_cost,tax_rate,tip_rate,number_eating

并通过函数调用将它们打印在字符串中。我查看了 Whosebug,但找不到适合我情况的问题(打印从字符串中的函数返回的字典)

我有一个函数接受所有输入,returns 一个字典输出。我想通过函数调用将这些返回值打印在一个字符串中,全部在同一行中。这是我试过的:

def calculatedCost(meal_cost,tax_rate,tip_rate,number_eating):
  tax = round(float(meal_cost * tax_rate) / 100,2)
  tip = round(float(meal_cost * tip_rate) / 100,2)
  total_cost = round(meal_cost + tax + tip,2)
  division = round(total_cost / number_eating,2)
  return {'tax': tax, 'tip': tip, 'total_cost':total_cost, 'division':division} 

print("The cost of your meal is: {total_cost}, the tax on your meal is: {tax}, the tip is equal to: {tip}, and the split total is: {division}".format(calculatedCost(62.75,5,20,2)))

我收到此错误:(我正在使用处理)

KeyError: total_cost
processing.app.SketchException: KeyError: total_cost
at jycessing.mode.run.SketchRunner.convertPythonSketchError(SketchRunner.java:240)
at jycessing.mode.run.SketchRunner.lambda(SketchRunner.java:119)
at java.lang.Thread.run(Thread.java:748)

您需要解压 dict(注意双星号):

print("The cost of your meal is: {total_cost}, the tax on your meal is: {tax}, the tip is equal to: {tip}, and the split total is: {division}".format(**calculatedCost(62.75,5,20,2)))