The concept of looping helps us to avoid writing instructions repeatedly to complete the task.
Answers
Answered by
2
Answer:
In this chapter, you will learn how to make the computer execute a group of statements over and over as long as certain criterion holds. The group of statements being executed repeatedly is called a loop. There are two loop statements in Python: for and while. We will discuss the difference between these statements later in the chapter, but first let us look at an example of a loop in the real world.
Similar questions