Quick actions

cmd+k|ctrl+k

Navigation

Languages

iterables

Snippet info

Language

Python

Visibility

public

Author

gustav

Created

2026-07-20T01:08:09.985109Z

Updated

2026-07-20T01:08:09.985109Z

 #Bucles for (la forma más común)

#frutas = ["manzana", "banana", "cereza"]

#print(fruta)  
    
#pares = [(1, 2), (3, 4), (5, 6)]

#for a, b in pares:
    #print(a + b)
    
user = {
    'name' : 'santander',
    'age' : 1200,
    'can_shoot' : True
    
}

for pop in user.items():
    print(pop)
    
    



INFO