From dba7ab4dcd540cccb6862be9ae3c1d6ad1059d76 Mon Sep 17 00:00:00 2001 From: Kostas Minaidis Date: Thu, 3 Jan 2019 04:52:25 +0200 Subject: [PATCH] Fixing typo --- 11-comparison_operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: