Python For Loops - GeeksforGeeks

PHOTO EMBED

Fri Dec 13 2024 17:24:56 GMT+0000 (Coordinated Universal Time)

Saved by @abaig

s = ["Geeks", "for", "Geeks"]

# using for loop with string
for i in s:
    print(i)
content_copyCOPY

https://www.geeksforgeeks.org/python-for-loops/