def select_plot(): plot_options = { '1': abc_fig, '2': cat_fig, '3': dog_fig, '4': fish_food_fig } while True: print("Please select(Input 1-4, q for exit):") for option, fig in plot_options.items():想输出序号和 abc_fig。写出python代码
时间: 2024-03-07 14:50:06 浏览: 51
python3下使用matplotlib.pyplot.plot()绘制算法模型输出分布图源代码,python3下亲测好用
您可以使用 f-string 格式化字符串的语法,将选项的序号和 `abc_fig` 的值输出。例如:
```python
for option, fig in plot_options.items():
print(f"{option}. {fig}")
```
在这个例子中,`{option}` 和 `{fig}` 都是占位符,将分别被 `option` 和 `fig` 的值所替换。因此,这个语句将输出形如 `"1. <Figure object at 0x7f47d8c7f390>"` 的字符串,其中 `1` 是键的编号,`<Figure object at 0x7f47d8c7f390>` 是对应的值。
阅读全文