在寒冷的冬日,来一罐酸甜可口的山楂罐头,既美味又健康。今天,就让我这个烹饪小达人来为你揭秘家庭简易制作山楂罐头的步骤,让你轻松享受这份甜蜜。
准备材料
- 新鲜山楂:500克
- 白糖:200克
- 清水:适量
- 罐头瓶:若干
制作步骤
1. 山楂清洗
首先,将新鲜山楂用清水冲洗干净,去除表面的灰尘和杂质。然后用剪刀将山楂的蒂头和根蒂剪掉,再将山楂的果肉和核分开。
def clean_saucesauce(sauces):
"""
清洗山楂
:param sauces: 山楂列表
:return: 清洗后的山楂列表
"""
cleaned_sauces = []
for sauce in sauces:
sauce['name'] = sauce['name'].strip() # 去除名字两侧的空格
sauce['type'] = sauce['type'].strip() # 去除类型两侧的空格
cleaned_sauces.append(sauce)
return cleaned_sauces
sauces = [
{'name': '山楂', 'type': '新鲜'},
{'name': '白糖', 'type': '200克'},
{'name': '清水', 'type': '适量'},
{'name': '罐头瓶', 'type': '若干'}
]
cleaned_sauces = clean_saucesauce(sauces)
for sauce in cleaned_sauces:
print(f"{sauce['name']}:{sauce['type']}")
2. 山楂去核
将山楂的核去掉,可以用手或勺子轻轻挖出。这一步很关键,因为核会影响到罐头的口感和保存。
def remove_core(sauces):
"""
去核山楂
:param sauces: 山楂列表
:return: 去核后的山楂列表
"""
for sauce in sauces:
sauce['core'] = None
return sauces
remove_core(cleaned_sauces)
3. 煮制山楂
将处理好的山楂放入锅中,加入适量的清水,用中小火煮至山楂变软。期间,要不断搅拌,防止山楂粘锅。
def cook_saucesauce(sauces):
"""
煮制山楂
:param sauces: 山楂列表
:return: 煮制后的山楂列表
"""
for sauce in sauces:
sauce['cooked'] = True
return sauces
cook_saucesauce(cleaned_sauces)
4. 加入白糖
将煮好的山楂连同汤汁一起倒入锅中,加入适量的白糖。再次用中小火煮至糖完全融化,汤汁变得浓稠。
def add_sugar(sauces, sugar_amount):
"""
加入白糖
:param sauces: 山楂列表
:param sugar_amount: 白糖量
:return: 加入白糖后的山楂列表
"""
for sauce in sauces:
sauce['sugar'] = sugar_amount
return sauces
add_sugar(cleaned_sauces, 200)
5. 填充罐头
将煮好的山楂连同汤汁一起倒入洗净消毒的罐头瓶中,然后密封瓶盖,放入冰箱冷藏保存即可。
def fill_jar(sauces):
"""
填充罐头
:param sauces: 山楂列表
:return: 填充罐头后的山楂列表
"""
for sauce in sauces:
sauce['jar'] = '罐头瓶'
return sauces
fill_jar(cleaned_sauces)
美味分享
制作好的山楂罐头可以搭配酸奶、面包等食物一起食用,口感酸甜可口,既美味又健康。赶紧动手试试吧,让你的家人朋友都享受到这份甜蜜的滋味!
