diff --git a/website/content/02-introduction-to-python/110-control-statements-looping/10-if-else-elif.md b/website/content/02-introduction-to-python/110-control-statements-looping/10-if-else-elif.md index 1aebc97..509d999 100644 --- a/website/content/02-introduction-to-python/110-control-statements-looping/10-if-else-elif.md +++ b/website/content/02-introduction-to-python/110-control-statements-looping/10-if-else-elif.md @@ -182,7 +182,8 @@ Hello And vice-versa. ```python ->>> a = True +>>> a = False +>>> if a: ... print("Hello") ... else: ... print("Goodbye") @@ -226,4 +227,4 @@ You can have as many `elif` statements in your code as you want. They get evalua ... print("Dunno") ... Less than 10 -``` \ No newline at end of file +```