Hello.
There was a task to display several graphs.
For example, there is a function y = f (x), and I need to display a graph from point x1 to x2 with step delta.
Can I do something like this in python?

    1 answer 1

    Look at CairoPlot .

    CairoPlot is an API written in Python using PyCairo to build 6 kinds of graphs.

    A normal function graph is displayed by calling function_plot .

    • What you need, thanks! - Ilmirus