🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Expert Masterclasses.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.
REFERENCEpython

python Documentation

📖 INDEX

No matches found.
LOADING ENGINE...

for Loop

PYTHON REFERENCE // for-loop

Used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string)

Syntax

for x in ['apple', 'banana']:
    print(x)

Examples

Example 01Basic Usage
for x in ['apple', 'banana']:
    print(x)

Best Practices

  • Consult official Python documentation for advanced usage.
  • Ensure proper indentation and Pythonic style (PEP 8).