Einfacher Text Baustein

Text.

Lorem Ipsum...

import numpy as np
import matplotlib.pyplot as plt
import math

x = np.linspace(0, 2*math.pi, 256)
y = np.sin(x)

plt.plot(x, y)
plt.show()