import numpy as np import matplotlib.pyplot as plt navn = np.array(['Isabel', 'Odin', 'Beverly', 'Sofie']) poeng = np.array([2, 1.5, 0.5, 2]) plt.figure(3) plt.pie(poeng, labels=navn) plt.show()