--> For loop- Python- Alpha Codist | Alpha Codist

Search This Blog

For loop- Python- Alpha Codist

for loop, what,Python For Loops. A for loop is used for iterating over a sequence, java, python, software, PHP, C programming, Alpha Codist, course

For loop

Python For Loops. A for loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string).
for loop, what,Python For Loops. A for loop is used for iterating over a sequence., java,  python, software, PHP, C programming, Alpha Codist, course


The example will help you learn about it better.


Example:

In the example below there is a list named basket. It includes three apples and one orange. Here, the For loop checks the items each time it loops. So the first time it loops it checks the first string and attaches it in a variable called "item", then it runs the code inside the For loop which checks if the variable item( for the first loop item is "apple") is "apple". As it is True it prints "It is an apple." it also happens in the second and third loop. But in the fourth loop "orange"(the fourth item in the basket list) gets the place of apple(This time item = "orange") and since it is not equal to "apple"  it is False and the program prints "It is not an apple."


basket = ["apple", "apple", "apple", "orange"]

for item in basket:
    if item == "apple":
        print("It is an apple")
    else:
        print("It is not an apple.")


Result:

for loop, what,Python For Loops. A for loop is used for iterating over a sequence., java,  python, software, PHP, C programming, Alpha Codist, course

COMMENTS

Name

beeCrowd,11,C,10,Computer,9,Downloads,3,HTML,1,My Creation,2,Python,24,Python-Soft,1,Shooting,2,
ltr
item
Alpha Codist: For loop- Python- Alpha Codist
For loop- Python- Alpha Codist
for loop, what,Python For Loops. A for loop is used for iterating over a sequence, java, python, software, PHP, C programming, Alpha Codist, course
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYvTzaupSCoEiLVzjntMXtTt1n0dAV0B-ac7wO5AzAweQhDYh12i54VkB0QXUXlKKYWBljQF1abZhGuU4I5GpEgJ9qW98hAfGr7-apTMzSn2ujapm2tqEpsqDQWzDm0bkakx789Z2DcyLK/w640-h422/for+loop.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYvTzaupSCoEiLVzjntMXtTt1n0dAV0B-ac7wO5AzAweQhDYh12i54VkB0QXUXlKKYWBljQF1abZhGuU4I5GpEgJ9qW98hAfGr7-apTMzSn2ujapm2tqEpsqDQWzDm0bkakx789Z2DcyLK/s72-w640-c-h422/for+loop.png
Alpha Codist
https://alphacodist.blogspot.com/2020/07/forloop.html
https://alphacodist.blogspot.com/
https://alphacodist.blogspot.com/
https://alphacodist.blogspot.com/2020/07/forloop.html
true
7547834254111195316
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content