Skip to content

Instantly share code, notes, and snippets.

View Errentos's full-sized avatar

Errentos

  • Joined Sep 3, 2025
View GitHub Profile
#10224089 Rafael Erren Eliezer
import random as rd
import matplotlib.pyplot as plt
# Uniform
r1 = [rd.uniform(1, 100) for i in range(10000)]
plt.hist(r1, bins=100)
plt.title("Uniform Distribution")
plt.show()