Nov-05-2018, 12:43 PM
what should i use for the elif statement to get number not in the list
import random def rollBall(): system = [0,9,20,24,25,35] spin = random.randint(0,36) if spin in system: return True elif spin ??? system: return False