标签: visual-studio-code pycharm
在VSCode中以调试模式运行脚本时,例如当运行plt.subplots()并随后对某些图像子图运行plt.imshow()时,直到我运行plt.show()时,最终图形才会显示。但是,在PyCharm中,逐步调试脚本时,我们可能会看到图形和图像。如何在VSCode中获得类似的行为?
plt.subplots()
plt.imshow()
plt.show()