Yes, if you use notebook interface. Basically, install Python Extension Pack, it includes Jupyter extension, put your code in the editor, ... ... <看更多>
Search
Search
Yes, if you use notebook interface. Basically, install Python Extension Pack, it includes Jupyter extension, put your code in the editor, ... ... <看更多>
python 菜鳥的我,如題,用學校的anaconda跑這串code是確定沒問題的,自己習慣用vscode,python的延伸模組基本上都安裝好了,測試"hello world"那些都 ... ... <看更多>
I was following a tutorial (https://code.visualstudio.com/docs/python/python-tutorial), and to complete it, I needed to install and run the ... ... <看更多>
import matplotlib.pyplot as plt import matplotlib as mpl import numpy as np x = np.linspace(0, 20, 100) plt.plot(x, np.sin(x)) plt.show() ... ... <看更多>