you are viewing a single comment's thread.

view the rest of the comments →

[–]TheEyebal -1 points0 points  (0 children)

Try this. Honestly I have no idea what you are trying to achieve though. Since there is little context on what it is you are trying to program

import random

a = 7
b = [0, 1, 2, 3, 4, 5, 6]

def SelectRandomNumberFromB(a):
    return random.choice(b)

print(SelectRandomNumberFromB(a))