Skip to content

Instantly share code, notes, and snippets.

View ainiqolbi19's full-sized avatar

ainiqolbi19

  • Joined Sep 4, 2025
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import random
# --- Bagian 1: Demonstrasi Seed dan random() ---
print("--- Bagian 1: Seed dan random() ---")
def demo_seed(seed_value):
hasil = []
for _ in range(10):
random.seed(seed_value)
nilai = random.random()