Files
pythonkurs/teil22/rndm.py
2024-01-02 06:46:01 +01:00

8 lines
111 B
Python

import numpy as np
#Erzeuge 1 Mio Zufallszahlen
random_np = np.random(100000)
random_list = list(random_np)