nix-templates/templates/python/hello/app.py
2025-05-02 19:39:26 +03:00

5 lines
120 B
Python

import numpy as np
if __name__ == "__main__":
a = np.array([1, 2, 3])
print(f"Hello!, the mean is {a.mean()}")