Untitled

 avatar
unknown
plain_text
a year ago
215 B
14
Indexable
import random

events = 0

for i in range(1000):
    random_int = random.randint(1, 10000)

    if random_int <= 50:
        events += 1

print(f"Out of 10000 kills, I got {events} sinews in this test simulation.")
Editor is loading...
Leave a Comment