Answers for "install python to 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
0

how to get python to output in the terminal in vsc

mkdir hello
cd hello
code .
Posted by: Guest on December-16-2020

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

Browse Popular Code Answers by Language