The if/else command allows you to perform different tasks based on conditions.
The for command allows you to create a loop, executing a code block until the condition you specify is false.
break allows you to break out of the loop.
continue allows you to stop executing the code block but continue the loop.
The while command allows you to perform one or more tasks repeatedly until a given condition becomes false.
break allows you to break out of the loop.
continue allows you to stop executing the code block but continue the loop.