The Control Structures tab of (on the Conversational Notebook tab) offers users a convenient way to control the flow of robot programs using conditional statements (like “If/Else”) and loops.
If/Then/Else
The if..else
statement evaluates a test expression and will execute only executes a a part of the program only when the test condition is True
. If the condition is False
, the body of else
is executed.
More For more information on “if/else” statement statements in Python can be found here: , refer to https://www.learnpython.org/en/Conditions.
...
The Enter the expression to be evaluated may be entered by the user in into the text box.
Loop
A loop is a programming structure that repeats a sequence of instruction until a specific condition is met. For more information on loops in Python, refer to https://www.learnpython.org/en/Loops.
...
Users may You can program “while” loops or “for” loops from the conversational Loop tab. When programming a “while” loop, enter the expression to be evaluated into the text box.