For Loop 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 40:- For Loop In Python

In Python, a for loop is used to iterate over a sequence of elements. It allows you to execute a block of code for each item in the sequence. The for loop in Python is versatile and can be used with various types of sequences, including lists, tuples, strings, dictionaries, and even with the range() function.

The general syntax of a for loop in Python is as follows:

pythonCopy code

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

Here's how a for loop is typically used:

Example 1: Looping over a list:

pythonCopy code

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

Output:

Copy code

apple banana orange

Example 2: Looping over a string:

pythonCopy code

text = "Python" for char in text:    print(char)

Output:

cssCopy code

P y t h o n

Example 3: Looping using the range() function:

pythonCopy code

for num in range(1, 6):    print(num)

Output:

Copy code

1 2 3 4 5

In the first example, the for loop iterates over the list fruits, and in each iteration, the variable fruit takes the value of each element in the list, and the corresponding code block is executed.

In the second example, the for loop iterates over the string text, and in each iteration, the variable char takes the value of each character in the string, and the corresponding code block is executed.

In the third example, the for loop iterates over the sequence of numbers generated by the range() function, and in each iteration, the variable num takes the value of each number in the sequence, and the corresponding code block is executed.

The for loop is a powerful construct in Python and is widely used to perform tasks that require iterating over a collection of elements or performing a certain action a specific number of times.

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