原|2024-04-28 15:41:49|浏览:68
```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()
```