In [1]:
from functools import cache
import numpy as np
import matplotlib.pyplot as plt
import itertools
import math
from decimal import Decimal, getcontext
In [5]:
%matplotlib widget
In [6]:
plt.plot(np.array([1,2,3,4,5,4,3,2,1]))
Out[6]:
[<matplotlib.lines.Line2D at 0x11f933910>]
In [ ]: