#!/usr/bin/env python3 import numpy import matplotlib.pyplot as plt def funktion(): plt.figure() plt.xlabel("x") plt.ylabel("y") x = numpy.arange(-10, 10) y = (x ** 5 - 5 * x ** 4 - 30 * x ** 3 + 110 * x ** 2 + 29 * x - 105) plt.xlim(-6, 8) plt.ylim(-2000, 2000) plt.grid() plt.plot(x, y) plt.show() if __name__ == "__main__": funktion()