please tell correctly one word answer
Attachments:
Answers
Answered by
1
Answer:
1. Loop
2. while statement and for statement
3. in and not- in
4. range() function
Explanation:
- An iterative statement/loop, repeatedly executes a statement (loop body), till the controlling expression (having a scalar type) is false (0).
- The while statement assess the control expression prior to executing the loop body. The for statement executes the loop body based on the assessment of the 2 of 3 expression
- The Python membership operators are used to check if a value is found within a sequence. in evaluates to True if the left operand value appears in the sequence as found in the right operand and not -in evaluates to True if the left operand value does not appear in the sequence as found in the right operand
- The range () function generates a sequence of numbers over time.
Similar questions