番茄炒鸡蛋怎么炒

日期: 2024-04-29 00:02:23 作者:笑三少

```python
def stir_fry_tomato_and_eggs():
tomatoes = ["tomato1", "tomato2"]
eggs = ["egg1", "egg2"]

for tomato in tomatoes:
print("Stir-frying", tomato)

for egg in eggs:
print("Adding and scrambling", egg)

print("Mixing tomatoes and eggs together")
print("Seasoning with salt and pepper")
print("Cooking until eggs are set")
print("Serve hot")

stir_fry_tomato_and_eggs()
```