Quick actions

cmd+k|ctrl+k

Navigation

Languages

For Loops

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-20T06:29:43.606634Z

Updated

2026-07-20T06:29:43.606634Z

# for item in (1,2,3,4,5):
#     print(item)
# print(item)

for item in (1,2,3,4,5):
    for x in ["a","b","c"]:
        print(item,x)
INFO