蛋糕程序怎么写

时间:2025-01-25 04:38:39 单机游戏

```python

from datetime import datetime

设置蛋糕配方

cake_recipe = {

"面粉": 200,

"砂糖": 150,

"牛奶": 120,

"黄油": 100,

"鸡蛋": 2,

"发酵粉": 2

}

准备工作

oven_preheat_temp = 180 烤箱预热温度

baking_time = 30 烘焙时间

制作蛋糕

def make_cake(recipe):

打印当前时间

print(datetime.now())

打印配方明细

print("蛋糕配方:")

for ingredient, amount in recipe.items():

print(f"{ingredient}: {amount}")

烤箱预热

print(f"将烤箱预热至 {oven_preheat_temp} 度")

准备蛋糕模具

print("准备蛋糕模具")

混合配料

print("将配料混合在一起")

搅拌和倒入模具

print("搅拌配料并倒入蛋糕模具")

放入烤箱烘焙

print(f"将蛋糕模具放入预热好的烤箱,烘焙时间为 {baking_time} 分钟")

等待蛋糕烘焙完成

print("等待蛋糕烘焙完成")

取出蛋糕

print("将烘焙好的蛋糕从烤箱中取出")

结束烘焙流程

print("蛋糕制作完成")

调用函数

make_cake(cake_recipe)

```

这个程序包含了蛋糕制作的基本步骤,从准备材料到最终烘焙完成。你可以根据需要修改配方和烘焙时间。