Answers for "Iterating With for Loops in Python"

1

Iterating With for Loops in Python

names = ["Preet", "Ranjeet", "Adil"]
for name in names:
    print(name)
Posted by: Guest on April-08-2022

Python Answers by Framework

Browse Popular Code Answers by Language