Skip to content

Instantly share code, notes, and snippets.

@tofuninjah
Last active November 28, 2022 08:19
Show Gist options
  • Save tofuninjah/1f7075aa9e012a2938ef to your computer and use it in GitHub Desktop.
Save tofuninjah/1f7075aa9e012a2938ef to your computer and use it in GitHub Desktop.
random-percent-python
import math
import random
### Random number
### 2 10%
### 9 90%
my_list = [2] * 1 + [4] * 9
print my_list
print my_list[random.randrange(0, 10)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment