Python Forum
determine if an number is in a list
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
determine if an number is in a list
#1
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
Reply


Messages In This Thread
determine if an number is in a list - by Dbeah - Nov-05-2018, 12:43 PM
RE: determine if an number is in a list - by buran - Nov-05-2018, 01:03 PM
RE: determine if an number is in a list - by woooee - Nov-06-2018, 12:17 AM
RE: determine if an number is in a list - by wavic - Nov-06-2018, 04:06 AM
RE: determine if an number is in a list - by buran - Nov-06-2018, 07:57 AM
RE: determine if an number is in a list - by buran - Nov-06-2018, 12:11 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Delete strings from a list to create a new only number list Dvdscot 8 3,401 May-01-2023, 09:06 PM
Last Post: deanhystad
  find random numbers that are = to the first 2 number of a list. Frankduc 23 7,268 Apr-05-2023, 07:36 PM
Last Post: Frankduc
  TypeError: float() argument must be a string or a number, not 'list' Anldra12 2 6,780 Jul-01-2022, 01:23 PM
Last Post: deanhystad
  Split a number to list and list sum must be number sunny9495 5 3,858 Apr-28-2022, 09:32 AM
Last Post: Dexty
  Divide a number by numbers in a list. Wallen 7 11,057 Feb-12-2022, 01:51 PM
Last Post: deanhystad
  When did the number got included in the list? Frankduc 14 5,418 Feb-03-2022, 03:47 PM
Last Post: Frankduc
  Determine number of all the immediately adjacent points in python zackk 1 2,473 Feb-06-2021, 09:23 AM
Last Post: zackk
  Count number of occurrences of list items in list of tuples t4keheart 1 3,141 Nov-03-2020, 05:37 AM
Last Post: deanhystad
  How do I add a number to every item in a list? john316 2 2,637 Oct-28-2020, 05:29 PM
Last Post: deanhystad
  Print the number of items in a list on ubuntu terminal buttercup 2 2,649 Jul-24-2020, 01:46 PM
Last Post: ndc85430

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020