Iterate Through List Python || for loop || Python
In this we are going to see a basic program on how to traverse list with use of for loops in Python Programming Language.


vehicles = ["truck", "bike", "car", "plane"]
for x in vehicles:
    print(x)

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post