Simple problem: percentage_chance = 0.36
if : #action here has 36% chance to execute pass
How can i solve thi
import random if random.randint(0,100) < 36: do_stuff()