diff --git a/guide/english/python/if-elif-else-statements/index.md b/guide/english/python/if-elif-else-statements/index.md index 98d0049923..e1f623a3f3 100644 --- a/guide/english/python/if-elif-else-statements/index.md +++ b/guide/english/python/if-elif-else-statements/index.md @@ -18,7 +18,7 @@ x = 5 if x > 4: print("The condition was true!") #this statement executes ``` -> **Tips** : You can use **1** as alternative to **True** and **0** as an alternative to **False** +> **Tips** : You can use any number or string or character as alternative to **True** and only **0** and **None** as an alternative to **False** Example: ```python @@ -138,4 +138,3 @@ while keep_playing == "True": print ("Player wins") ``` -