Python Programming Tutorial #9 - Iteration by Item (For Loops Continued...)

Tech With Tim · Beginner ·🛠️ AI Tools & Apps ·9y ago

Key Takeaways

This video tutorial covers iteration by item using for loops in Python, including syntax and examples for iterating through lists and checking for specific values.

Full Transcript

hey guys welcome back uh today we're doing the ninth video in my Python Programming series and today we're going to be talking more uh more about for Loops so a more advanced type of for Loop in terms of iterating through a list so you may remember a few videos ago we talked about for loops and I mentioned that there are two main type of for Loops that we can use um and the one that we talked about there was looked like this so we had for X in range and then we had a range like this and we simply printed out the numbers like this so we see we got 1 to 10 just like that okay uh so that was the for Loop we talked about there um but the one we're going to be doing today is a little bit different so I'll leave this here for an example uh so the first thing we need to do is we need to make a list because we're actually going to be iterating through every item or every element in the list so again I'm just going to use the same example I used in the other video fruits and I'm going to make it equal to we're going to have apples pears and strawberries strawberries just like that okay so we have our fruits here and now um we're going to get right into the Syntax for this new for Loop so we're going to do four and then any variable name we'd like so in this case I'm going to use fruit and then we're going to use the keyword in once again and then instead of typing range this time we're going to type the name of the list we want to iterate through so in this case it's going to be be called fruits just like that and now um we can print out the fruit sorry the fruit just like that so pretty much what is going to happen is we have a list with three items in it we have apples pears and strawberries now we want to print every fruit in that list so we do that by saying for fruit in fruits meaning for every item in fruits so one two and three items we simply want to print out that fruit so this Loop is going to run three times and we're just going to print out every fruit inside of the list just like this and there you go we have apples pears and strawberries just like that um so yeah that's pretty much how you can iterate through a list and same thing if I want to add more elements to the list so at 8 um 90 just like that again it'll just simply print out all of the items in the list now uh why might we do this you say well there's a few reasons we may want to iterate by item rather than by indices so the other one uh the in range is known as iterating by indic or by index well this one is known as iterating by item so there's a few reasons we might want to do this but the first one is if we only want to print something out uh if it's a certain value so we just want to check through all of the items in the list and see if they are certain value and if they are then we're going to print it out or we're going to do something specific to that item uh so in this case I'm going to say if fruit is equal to for example pairs then I want to print out pairs so we'll just print out the fruit but if it's not equal to pairs so anything else then I will print out not pairs like that so this is an example of how we can look through every item in the list um and simply check if it is a certain value and then if it is we're going to print it to the screen so we'll try this and we see we have not pairs Pairs and Then followed by a few more not pairs um so that's a good way to do it by item um otherwise we can still do this using Indy uh it's just a little more complicated or not as efficient so we could do 4X in range and then in this case we'll do zero and six because we have to do it six times because there's six items in the list and then we'll put a colon and then we'll say the same thing so except this time we're going to say if fruits followed by the square brackets and then X because this is going to be our indic equals equals pairs then we want to print fruit or fruit X oops otherwise we'll print not a pair just like we did in the other loop not a pair okay so we'll run that and we see we get it twice just because I had two for Loops there so it does work uh the exact same way except you can see that this one takes longer to write because we actually have to put the list name followed by the square brackets whereas in this Loop all we have to do is simply type in fruit um because it's automatically going through the list um another reason too we may want to do that is because in this case we had to actually see how many items were in the list by counting um and then we had to put that number in whereas here it'll just stop at the end of the list automatically um now we could do this so Len this is a new word so I'm just showing this now uh this means length and then inside we can put something like a string or a list so in this case I'm going to put the length of fruits and that would give us a value of six and you'll see if I just get rid of this that it'll work the same way again um by using the length of fruits okay so that is how to iterate through a list by item uh I hope you enjoyed if you did please leave a like And subscribe and stay tuned for more videos in this series

Original Description

This is the 9th video in my python programming tutorial series. Today I talk about how to iterate through a list by item using a for loop. This is a continuation from my 6th video where I talk about basic for loops. Text-Based Tutorial: https://techwithtim.net/tutorials/python-programming/beginner-python-tutorials/iteration-by-item-for-loops-continued/ As always please LIKE and SUBSCRIBE for more content daily! Video Tags: python,python tutorial,python language,python full course,python course,learn python,learn python programming,python tutorial for beginners,python tutorial 2018,python programming tutorial,python programming language,software development,programming tutorial,tech with tim
Watch on YouTube ↗ (saves to browser)
Sign in to unlock AI tutor explanation · ⚡30

Playlist

Uploads from Tech With Tim · Tech With Tim · 10 of 60

1 A* Path Finding Algorithm(Visualization)
A* Path Finding Algorithm(Visualization)
Tech With Tim
2 Python Programming Tutorial #1 - Variables and Data Types
Python Programming Tutorial #1 - Variables and Data Types
Tech With Tim
3 Python Programming Tutorial #2 - Basic Operators and Input
Python Programming Tutorial #2 - Basic Operators and Input
Tech With Tim
4 Python Programming Tutorial #3 - Conditions
Python Programming Tutorial #3 - Conditions
Tech With Tim
5 Python Programming Tutorial #4 - IF/ELIF/ELSE
Python Programming Tutorial #4 - IF/ELIF/ELSE
Tech With Tim
6 Python Programming Tutorial #5 - Chained Conditionals and Nested Statements
Python Programming Tutorial #5 - Chained Conditionals and Nested Statements
Tech With Tim
7 Python Programming Tutorial #6 - For Loops
Python Programming Tutorial #6 - For Loops
Tech With Tim
8 Python Programming Tutorial #7 - While Loops
Python Programming Tutorial #7 - While Loops
Tech With Tim
9 Python Programming Tutorial #8 - Lists and Tuples
Python Programming Tutorial #8 - Lists and Tuples
Tech With Tim
Python Programming Tutorial #9 - Iteration by Item (For Loops Continued...)
Python Programming Tutorial #9 - Iteration by Item (For Loops Continued...)
Tech With Tim
11 Python Programming Tutorial #10 - String Methods
Python Programming Tutorial #10 - String Methods
Tech With Tim
12 How to Overclock a NVIDIA GPU
How to Overclock a NVIDIA GPU
Tech With Tim
13 Python Programming Tutorial #11 - Slice Operator
Python Programming Tutorial #11 - Slice Operator
Tech With Tim
14 Python Programming Tutorial #12 - Functions
Python Programming Tutorial #12 - Functions
Tech With Tim
15 Python Programming Tutorial #13 - How to Read a Text File
Python Programming Tutorial #13 - How to Read a Text File
Tech With Tim
16 Python Programming Tutorial #14 - Writing to a Text File
Python Programming Tutorial #14 - Writing to a Text File
Tech With Tim
17 Python Programming Tutorial #15 - Using .count() and .find()
Python Programming Tutorial #15 - Using .count() and .find()
Tech With Tim
18 Python Programming Tutorial #16 - Introduction to Modular Programming
Python Programming Tutorial #16 - Introduction to Modular Programming
Tech With Tim
19 Python Programming Tutorial #17 - Optional Parameters
Python Programming Tutorial #17 - Optional Parameters
Tech With Tim
20 Python Programming Tutorial #18 - Try and Except (Python Error Handling)
Python Programming Tutorial #18 - Try and Except (Python Error Handling)
Tech With Tim
21 Python Programming Tutorial #19 - Global vs Local Variables
Python Programming Tutorial #19 - Global vs Local Variables
Tech With Tim
22 Python Programming Tutorial #20 - Classes and Objects
Python Programming Tutorial #20 - Classes and Objects
Tech With Tim
23 Cool VBS Script to Prank Your Friends!
Cool VBS Script to Prank Your Friends!
Tech With Tim
24 How to Overclock an AMD GPU
How to Overclock an AMD GPU
Tech With Tim
25 Best GPU'S For Mining Ethereum (2018)
Best GPU'S For Mining Ethereum (2018)
Tech With Tim
26 Recursion and Memoization Tutorial Python
Recursion and Memoization Tutorial Python
Tech With Tim
27 Ethereum Mining Rig - Hardware Guide
Ethereum Mining Rig - Hardware Guide
Tech With Tim
28 Pygame Tutorial #1 - Basic Movement and Key Presses
Pygame Tutorial #1 - Basic Movement and Key Presses
Tech With Tim
29 How to Install Pygame (Windows 8/10)
How to Install Pygame (Windows 8/10)
Tech With Tim
30 How to Trade Your Cryptocurrency (Bitcoin, Ethereum etc.) For Cash!
How to Trade Your Cryptocurrency (Bitcoin, Ethereum etc.) For Cash!
Tech With Tim
31 How to Mine Ethereum 2018 - WORKING (Super-Easy)
How to Mine Ethereum 2018 - WORKING (Super-Easy)
Tech With Tim
32 Microphone Comparison - $10 Mic vs $150 Mic (Blue Yeti USB)
Microphone Comparison - $10 Mic vs $150 Mic (Blue Yeti USB)
Tech With Tim
33 Pygame Tutorial #2 - Jumping and Boundaries
Pygame Tutorial #2 - Jumping and Boundaries
Tech With Tim
34 Pygame Tutorial #3 - Character Animation & Sprites
Pygame Tutorial #3 - Character Animation & Sprites
Tech With Tim
35 Pygame Tutorial #4 - Optimization & OOP
Pygame Tutorial #4 - Optimization & OOP
Tech With Tim
36 OBS Studio Tutorial - Best OBS Settings
OBS Studio Tutorial - Best OBS Settings
Tech With Tim
37 Linear Search Algorithm - Python Example and Code
Linear Search Algorithm - Python Example and Code
Tech With Tim
38 Make Any Mic Sound AMAZING! (WITH OBS)
Make Any Mic Sound AMAZING! (WITH OBS)
Tech With Tim
39 Binary Search Algorithm - Python Example & Code
Binary Search Algorithm - Python Example & Code
Tech With Tim
40 Pygame Tutorial #5 - Projectiles
Pygame Tutorial #5 - Projectiles
Tech With Tim
41 Pygame Game - Mini Golf
Pygame Game - Mini Golf
Tech With Tim
42 Pygame Tutorial - Projectile Motion (Part 1)
Pygame Tutorial - Projectile Motion (Part 1)
Tech With Tim
43 Pygame Tutorial - Projectile Motion (Part 2)
Pygame Tutorial - Projectile Motion (Part 2)
Tech With Tim
44 Pygame Tutorial #6 - Enemies
Pygame Tutorial #6 - Enemies
Tech With Tim
45 Pygame Tutorial #7 - Collision and Hit Boxes
Pygame Tutorial #7 - Collision and Hit Boxes
Tech With Tim
46 Pygame Tutorial #8 - Scoring and Health Bars
Pygame Tutorial #8 - Scoring and Health Bars
Tech With Tim
47 Cloud Mining vs. Hardware Mining - 2018
Cloud Mining vs. Hardware Mining - 2018
Tech With Tim
48 How to Install Pygame on Mac OSX (Fast-Simple)
How to Install Pygame on Mac OSX (Fast-Simple)
Tech With Tim
49 Pygame Tutorial #9 - Sound Effects, Music & More Collision
Pygame Tutorial #9 - Sound Effects, Music & More Collision
Tech With Tim
50 Pygame Tutorial #10 - Finishing Touches & Next Steps
Pygame Tutorial #10 - Finishing Touches & Next Steps
Tech With Tim
51 How to Fade Your Screen in Pygame [CODE IN DESCRIPTION]
How to Fade Your Screen in Pygame [CODE IN DESCRIPTION]
Tech With Tim
52 How to Create a Button in Pygame [CODE IN DESCRIPTION]
How to Create a Button in Pygame [CODE IN DESCRIPTION]
Tech With Tim
53 Pygame Side-Scroller Tutorial #1 - Scrolling Background/Character Movement
Pygame Side-Scroller Tutorial #1 - Scrolling Background/Character Movement
Tech With Tim
54 Pygame Side-Scroller Tutorial #2 - Random Object Generation
Pygame Side-Scroller Tutorial #2 - Random Object Generation
Tech With Tim
55 Pygame Side-Scroller Tutorial #3 - Collision
Pygame Side-Scroller Tutorial #3 - Collision
Tech With Tim
56 Pygame Side-Scroller Tutorial #4 - Scoring and End Screen
Pygame Side-Scroller Tutorial #4 - Scoring and End Screen
Tech With Tim
57 How to Create A Message Box in Python - Tkinter
How to Create A Message Box in Python - Tkinter
Tech With Tim
58 Is Ethereum Mining Still Profitable - Is It Worth It (April 2018)
Is Ethereum Mining Still Profitable - Is It Worth It (April 2018)
Tech With Tim
59 How to Run MAC OSX on a WINDOWS PC (Clover Boot-loader)
How to Run MAC OSX on a WINDOWS PC (Clover Boot-loader)
Tech With Tim
60 Programming Problem #1 - Alphabet Soup (Beginner/Novice)
Programming Problem #1 - Alphabet Soup (Beginner/Novice)
Tech With Tim

This video teaches how to iterate through lists by item using for loops in Python, covering the syntax and examples for iterating through lists and checking for specific values. It also compares item iteration with index iteration using range.

Key Takeaways
  1. Create a list of items
  2. Use a for loop with the syntax 'for variable in list'
  3. Print out each item in the list
  4. Use conditional statements to check for specific values
  5. Compare item iteration with index iteration using range
💡 Item iteration using for loops is more efficient and easier to read than index iteration using range, especially when working with lists of unknown length.

Related AI Lessons

Up next
Salesforce Flow New Features (Summer '26) | Open Record, URL & Show Toast Messages
AITECHONE
Watch →