Spaces:
Running
Running
File size: 152 Bytes
369c2da |
1 2 3 4 5 6 |
from random import randint
def select_random_from_list(l):
if isinstance(l, list):
return l[randint(0,len(l)-1)]
else:
return l |