Website in progress
Soon there will be lots of fun code
import matplotlib.pyplot as plt import random x, y = [0], [0] for _ in range(1000): angle = random.uniform(0, 2 * 3.14159) x.append(x[-1] + 0.5 * cos(angle)) y.append(y[-1] + 0.5 * sin(angle))
And exciting math
Wait… so what happens now?
Wait patiently