Question 1 out of 5

    What is the difference between Python's '==' and 'is' operators?

    '==' compares values, 'is' compares identities

    The '==' operator compares the values of two objects, while the 'is' operator compares the identities of the objects.