Skip to content

Instantly share code, notes, and snippets.

@U29
Created October 8, 2021 06:18
Show Gist options
  • Save U29/d79ce24d097d250e669583347d52886d to your computer and use it in GitHub Desktop.
Save U29/d79ce24d097d250e669583347d52886d to your computer and use it in GitHub Desktop.
import random
min = 0
minmax = 0.3
maxmin = 0.8
max = 1.0
choice = random.randint(0,1)
if choice:
rt = random.uniform(min, minmax)
else:
rt = random.uniform(maxmin, max)
ret = rt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment