matplotlib交互事件設置

可以通過fig.canvas.mpl_connect()方法綁定事件 import matplotlib.pyplot as plt def on_key_press(event):     print(event.key) fig, ax = plt.subplots() fig.canvas.mpl_connect('key_press_event', on_key_press) plt.sh
相關文章
相關標籤/搜索