diff --git a/guide/english/python/bool-function/index.md b/guide/english/python/bool-function/index.md
index 6bf8694677..0fa7843101 100644
--- a/guide/english/python/bool-function/index.md
+++ b/guide/english/python/bool-function/index.md
@@ -54,6 +54,6 @@ There are three Boolean Operators they are `and`, `or`, and `not`.
print(bool((2,3,4))) # Returns True as tuple is a non-zero value
print(bool([])) # Returns False as list is empty and equal to 0 according to truth value testing
- Run Code
+Run Code
Official Docs