Discussion 03: Conditional and RepetitionConditional statements are mainly the statements that performs computations or actions that depend on whether the condition is true or false. Repetition statements on the other hand is a block of code containing several statements that can be executed multiple times, the number of times is usually determined by the control condition.Mainly, conditional statements will only execute once in the case that the condition is found true, whereas loop will execute repeatedly till the condition becomes false. Mostly, conditional statement evaluate every condition and if it is satisfied by the parameters used goes ahead to determine the output.A good example of conditional statement is the “if statement”, in python program, if statement allows conditional execution of a statement based on the value of any expression.A simple python if statement example like,if<expr>:<Statement>If <expr> is true then the value is evaluated and <statement> is executed. If <expr> is false, then <Statement> is skipped and it is not executed.Since repetition statement is a block of code containing several statements that are executed multiple times, it sometimes take forever and mostly referred as infinite loop. There are various statements are used to control the loop. While statement is mainly