You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _sources/functions/func_Str_Cond.rst
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -235,6 +235,8 @@ You can get a copy of part or all of a string using ``str_name[start:end]``.
235
235
Basic Conditionals and Tests
236
236
============================
237
237
238
+
You can execute code only when a condition is true using ``if``. You can execute one block of code when a condition is true (using ``if``) or false (using ``else``). You can even speicfy more than two outcomes as shown in the code below.
0 commit comments