Author: Bona Akubue

  • python try keyword

    Python try keyword

    Python try keyword is used to indicate the start of the try-except block and is used for exception handling.…

    Read More

  • python true keyword

    Python True Keyword

    Python True Keyword is a boolean condition representing 1 or On in the binary. It is commonly used in…

    Read More

  • python return keyword

    Python return keyword

    The Python return keyword is used to specify the value to be returned during a function call.

    Read More

  • python raise keyword

    Python raise keyword

    Python raise keyword is used to raise exceptions in a program. It allows developers to generate and throw exceptions…

    Read More

  • python pass keyword

    Python pass keyword

    Python pass keyword is used to indicate a null operation. Nothing is executed when this keyword is found in…

    Read More

  • pyrhon or keyword

    Python or keyword

    Python or keyword is used as a logical operator to perform in performing compound boolean expressions.  It returns True…

    Read More

  • python not keyword

    Python not keyword

    Python not keyword is used in conditional statements to determine when two expressions are not the same.

    Read More

  • python nonlocal keyword

    Python nonlocal keyword

    Python nonlocal keyword is used to instruct the interpreter that the variable you are referring to is in an…

    Read More

  • Python None keyword

    Python None Keyword

    Python None keyword is used to define an object with no value at all. A value with the value…

    Read More