Add the word "programming" in the article (#25057)

This commit is contained in:
arjundixit98
2018-11-07 13:54:17 +05:30
committed by Aditya
parent e32ff64853
commit 12da60565a

View File

@ -5,7 +5,7 @@ title: If / Elif / Else Statements
## 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. 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 ```python
if True: if True:
print('If block will execute!') print('If block will execute!')