Last active 1715846524

q27.py Raw
1# Create 2 arrays, using MatPlotLib, plot the graph with the content of the two arrays, with coordinates plotted on
2# x-axis and y-axis.
3
4import numpy as np
5import matplotlib.pyplot as plt
6from random import randint
7
8points = np.array([
9 [randint(0, 100) for _ in range(50)],
10 [randint(0, 100) for _ in range(50)],
11])
12
13fig, ax = plt.subplots()
14ax.plot(points[0], points[1], 'ro')
15plt.show()
16