“Pencipta dalam Python” Kode Jawaban

Pencipta dalam Python

#python
# Python program to illustrate
# enumerate function
l1 = ["eat","sleep","repeat"]
s1 = "hello"

# creating enumerate objects
obj1 = enumerate(l1)
obj2 = enumerate(s1)

print ("Return type:",type(obj1))
print (list(enumerate(l1)))

# changing start index to 2 from 0
print (list(enumerate(s1,2)))
loobiish

Hitung dalam Python

list1 = ['1', '2', '3', '4']

for index, listElement in enumerate(list1): 
    #What enumerate does is, it gives you the index as well as the element in an iterable
    print(f'{listElement} is at index {index}') # This print statement is just for example output

# This code will give output : 
"""
1 is at index 0
2 is at index 1
3 is at index 2
4 is at index 3
"""
Psych4_3.8.3

Jawaban yang mirip dengan “Pencipta dalam Python”

Pertanyaan yang mirip dengan “Pencipta dalam Python”

Lebih banyak jawaban terkait untuk “Pencipta dalam Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya