diff --git a/11-comparison_operators.md b/11-comparison_operators.md index f2230ad..12ca5f6 100644 --- a/11-comparison_operators.md +++ b/11-comparison_operators.md @@ -43,7 +43,7 @@ b = True a is b # returns True x = [1, 2, 3] y = [1, 2, 3] -x is y # returns Flase +x is y # returns False ``` Use the `in` operator to check if a value is present: