Answers for "how to install python for visual studio code"

5

installing python packages in visual studio code

py -m pip install numpy
Posted by: Guest on November-01-2020
0

Setup VS Code for python

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 20, 100)  # Create a list of evenly-spaced numbers over the range
plt.plot(x, np.sin(x))       # Plot the sine of each x point
plt.show()                   # Display the plot
Posted by: Guest on June-15-2021

Code answers related to "how to install python for visual studio code"

Browse Popular Code Answers by Language