Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
Source by code.visualstudio.com #
 
PREVIOUS NEXT
Tagged: #Setup #VS #Code #python
ADD COMMENT
Topic
Name
5+7 =