0
What is len nums?
What is len? https://code.sololearn.com/cSf7Ew7jcj9c/?ref=app
2 Antworten
0
The number of elements in the list
0
Length of a list, tuple or dictionary. Ex.
a = [1,2,3,4]
print(len(a))
# Outputs 4
What is len? https://code.sololearn.com/cSf7Ew7jcj9c/?ref=app