Contents of this page:
If statements are translated to their equivalent Python versions.
If Value = 10 Or Value = 20 Then DoSomethingElseIf Value = 30 Then DoSomethingElseElse DontDoAnythingEnd If
if Value == 10 or Value == 20: DoSomething() elif Value == 30: DoSomethingElse() else: DontDoAnything()
There are no options specific to the If statement.