Game Preview

HS Python coding vocab

  •  English    35     Public
    keywords for coding
  •   Study   Slideshow
  • Boolan statement, opposite of true
    false
    not
    fulse
    False
  •  15
  • Boolean statement: opposite of false.
    tru
    True
    yes
    true
  •  15
  • An empty string of code
    None
    blank
    none
    blanck
  •  15
  • Used to determine if both left and righ operands are truthy or falsy
    and
    both
    AND
    BOTH
  •  15
  • Object identity check: determines if 2 objects are exactly the same.
    Is
    si
    IS
    is
  •  15
  • containmennt check, is a element included in the data
    in
    out
    with
    included
  •  15
  • Connects 2 expressions and evaluates for true or false
    OR
    Or
    ore
    or
  •  15
  • Gives the opposite Boolean value of a variable
    Other
    Not
    not
    other
  •  15
  • Starts a conditional statement if the statement is true.
    IF
    if
    then
    Then
  •  15
  • works like "if" statement but can only be used after an "if" or another of the same statement
    elif
    else if
    ElseIf
    Elif
  •  15
  • Denotes blocks of code that should be run when "if" and "elif" statements are falsy
    Else
    else
    ELSETHEN
    Elsethen
  •  15
  • Most common loop, often used with "in"
    Loop
    FOR
    for
    loop
  •  15
  • Loop word, if conditions that follow are truthy, using this keyword will keep its statement running over and avoer
    While
    when
    When
    while
  •  15
  • Exits a loop early
    BREAK
    Stop
    stop
    break
  •  15
  • Stops the current loop and moves to next step
    continue
    CONTINUE
    Next
    NEXT
  •  15
  • used to define a function or method of class
    def
    Define
    DEF
    define
  •  15