“Enumarat in Python” Code-Antworten

für aufgezählte Python

for key, value in enumerate(["p", "y", "t", "h", "o", "n"]):
    print key, value

"""
0 p
1 y
2 t
3 h
4 o
5 n
"""
Weary Wombat

Enumarat in Python

# Python program to illustrate
# enumerate function in loops
l1 = ["eat", "sleep", "repeat"]
 
# printing the tuples in object directly
for ele in enumerate(l1):
    print (ele)
 
# changing index and printing separately
for count, ele in enumerate(l1, 100):
    print (count, ele)
 
# getting desired output from tuple
for count, ele in enumerate(l1):
    print(count)
    print(ele)
cwistin

Ähnliche Antworten wie “Enumarat in Python”

Fragen ähnlich wie “Enumarat in Python”

Weitere verwandte Antworten zu “Enumarat in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen