From 12da60565a8b56864df4be08e7e3bf8029bef7fd Mon Sep 17 00:00:00 2001 From: arjundixit98 <36246420+arjundixit98@users.noreply.github.com> Date: Wed, 7 Nov 2018 13:54:17 +0530 Subject: [PATCH] Add the word "programming" in the article (#25057) --- guide/english/python/if-elif-else-statements/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/python/if-elif-else-statements/index.md b/guide/english/python/if-elif-else-statements/index.md index d8882db6ba..28b3b4e31f 100644 --- a/guide/english/python/if-elif-else-statements/index.md +++ b/guide/english/python/if-elif-else-statements/index.md @@ -5,7 +5,7 @@ title: If / Elif / Else Statements ## If / Elif / Else Statements The `if`/`elif`/`else` structure is a common way to control the flow of a program, allowing you to execute specific blocks of code depending on the value of some data. If the condition following the keyword `if` evaluates as `True`, the block of code will execute. -Note: that parenthesis is not used before and after the condition check as in other languages. +Note: that parenthesis is not used before and after the condition check as in other programming languages. ```python if True: print('If block will execute!')