Skip to content
Snippets Groups Projects
ads.py 246 B
Newer Older
import matplotlib.pyplot as plt
import numpy as np

msg = "Hello World"
print(msg)

Goes,M. (Martijn)'s avatar
Goes,M. (Martijn) committed
# 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()