# Dette er en modul. import matplotlib.pyplot as plt def plott_data(x, y): """ Plot dataene y som funk. av x""" fig = plt.figure() plt.plot(x,y) plt.xlabel('x') plt.ylabel('y') plt.show()