用中文回答,问题:Python - How to show graph in Visual Studio Code itself?
时间: 2023-06-07 17:11:01 浏览: 171
适用于Python程序员的Visual Studio代码
你好!关于你的问题,可以考虑使用 Python 所提供的 matplotlib 和 seaborn 库来创建图形,并在 VS Code 中使用内置的 Python Interactive 窗口进行展示。具体的操作步骤可以参考如下的代码:
```python
import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
# 创建一个简单的数据集
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制一个折线图
plt.plot(x, y)
plt.show()
```
在 VS Code 中,可以使用 Ctrl + Shift + P 打开命令面板,然后输入 Python: Show Interactive Window,选择运行即可在 VS Code 内部展示图形。
希望以上回答对你有所帮助!
阅读全文