Loops In Python

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 37:- Loops In Python

In Python, loops are used to execute a block of code repeatedly until a certain condition is met. There are two main types of loops in Python: for loop and while loop.

  1. for loop: The for loop is used to iterate over a sequence, such as a list, tuple, string, or range of numbers. It allows you to execute a block of code for each item in the sequence.

Syntax:

pythonCopy code

for item in sequence:    # Code block to execute for each item

Example:

pythonCopy code

fruits = ["apple", "banana", "orange"] for fruit in fruits:    print(fruit)

Output:

Copy code

apple banana orange

  1. while loop: The while loop is used to execute a block of code as long as a certain condition is true. It continues to execute the code until the condition becomes false.

Syntax:

pythonCopy code

while condition:    # Code block to execute while the condition is true

Example:

pythonCopy code

count = 1 while count <= 5:    print(count)    count += 1

Output:

Copy code

1 2 3 4 5

In this example, the while loop is used to print numbers from 1 to 5. The loop continues as long as the count variable is less than or equal to 5. The count += 1 statement increments the value of the count variable by 1 in each iteration.

Loops are powerful constructs that enable you to automate repetitive tasks and process large amounts of data efficiently. You can use loops to traverse collections, perform calculations, validate user input, and much more. Be careful to provide an exit condition for the loop to prevent infinite loops.

6. Loops

0 Comments

Start the conversation!

Be the first to share your thoughts

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support