Online Ethical Hacking Course

Apply Now
Python Tutorial

Python for Loop: Syntax, Examples, How to Use for loop?

Table of Contents

  • Introduction
  • What is for Loop in Python?
  • For loop Syntax in Python
  • Iterable in for Loop in Python
  • How Does for Loop Work in Python?
  • Examples of ‘for’ loops in Python
  • How to Use for loop in Python?
  • range() Function for Numerical Iterations in for loop
  • Use of Loop Control Statements in Python
  • Nested for Loops in Python
  • List Comprehensions Using for loop in Python
  • Uses of for Loops in Python
  • Best Practices to Write Efficient and Readable 'for' loops in Python
  • Python for loop Programs
  • QUIZ!

QUIZ!

What will be the outcome of the Python code below?

x = ['a', 'c']

for i in x:

    i.upper()

print(x)

Select the correct answer

Did you find this article helpful?