小编典典

采取行动的机会百分比

python

简单问题:percent_chance = 0.36

if <don't know what>:
   #action here has 36% chance to execute
   pass

我怎么解决这个问题?


阅读 223

收藏
2020-12-20

共1个答案

小编典典

您可以使用random.random

>>> import random
>>> if random.random() < percentage_chance:
    print('aaa')
2020-12-20