Study

HS Python coding vocab

  •   0%
  •  0     0     0

  • code that might raise an exception
    next
    except
    try
    do
  • Defines a class in python, powerful in object-oriented programming
    group
    Group
    Class
    class
  • Object identity check: determines if 2 objects are exactly the same.
    IS
    si
    Is
    is
  • used to define a function or method of class
    def
    Define
    DEF
    define
  • defines a function without a name and with only 1 statement
    lambda
    Delta
    delta
    Lambda
  • defines the point in the function where control is given back to the event loop
    back
    event
    await
    stop
  • indicates a block intentionally left blank
    Skip
    skip
    pass
    Pass
  • Connects 2 expressions and evaluates for true or false
    ore
    Or
    OR
    or
  • Most common loop, often used with "in"
    Loop
    for
    FOR
    loop
  • containmennt check, is a element included in the data
    in
    with
    included
    out
  • Loop word, if conditions that follow are truthy, using this keyword will keep its statement running over and avoer
    When
    when
    while
    While
  • Stops the current loop and moves to next step
    CONTINUE
    NEXT
    Next
    continue
  • raises an exception
    lifts
    raise
    raises
    top
  • results in a no-op if the expression is truthy or an "AssertionError" if the expression is falsy
    true
    assert
    error
    express
  • used to modify a variable that isn't defined in a function but in a global scope
    modify
    define
    scope
    global
  • Used to include a module into your Python program
    import
    IMPORT
    bringin
    Bringin
  • valid only when used with "def"; exits the function and returns the results
    Back
    BACK
    return
    Return
  • Used with "try" to define what happens when specific exceptions are raised
    expand
    go
    except
    continue
  • defines an asynchronous function
    sync
    asynchronous
    async
    asynch
  • specifies code that should be run no matter what happens in the "try", "except" or "else" blocks
    final
    finally
    lastly
    last
  • Gives the opposite Boolean value of a variable
    other
    Other
    not
    Not
  • works like "if" statement but can only be used after an "if" or another of the same statement
    elif
    Elif
    else if
    ElseIf
  • Used with "import" and "from" to change the name of what is being imported
    switch
    as
    alias
    change
  • returns a "generator" from a function
    yield
    yeild
    YEILD
    Yield
  • Used with import to bring in something from a specific module.
    and
    from
    with
    next
  • Starts a conditional statement if the statement is true.
    Then
    then
    if
    IF
  • Boolan statement, opposite of true
    not
    False
    false
    fulse
  • used to modify a variable that isn't defined in a function but from a parent scope
    parent
    nonlocal
    local
    global
  • Context manager, defines code to be executed within the context manager's scope.
    WITHIN
    with
    WITH
    within
  • An empty string of code
    blanck
    None
    blank
    none
  • Denotes blocks of code that should be run when "if" and "elif" statements are falsy
    Else
    Elsethen
    else
    ELSETHEN
  • remove indexes from a list or dictionary, or unsets a variable
    del
    rid
    delete
    remove
  • Used to determine if both left and righ operands are truthy or falsy
    both
    and
    BOTH
    AND
  • Exits a loop early
    stop
    Stop
    break
    BREAK
  • Boolean statement: opposite of false.
    True
    tru
    true
    yes