There are two vectors: film_2 = np.array([0,1,0,1,0,0]) film_4 = np.array([1,0,0,1,0,1]) We know that the angle between them is 65.9 degrees. Construct a graph with a visual representation of the vectors and the angle between them.
import matplotlib.pyplot as plt import numpy as np # we need 2 vectors film_2 = np.array([0,1,0,1,0,0]) film_4 = np.array([1,0,0,1,0,1]) # We need to know how to plot vectors # We need to know how to get the angle between them # We need to know how to make a graph