El método len() devuelve el número de elementos en la lista o la longitud de la string según el argumento que esté pasando.
Cómo implementar sin usar len():
1. Take input and pass the string/list into a function which return its length. 2. Initialize a count variable to 0, this count variable count character in the string. 3. Run a loop till length if the string and increment count by 1. 4. When loop is completed return count.
Implementación de Python:
# Function which return length of string def findLength(string): # Initialize count to zero count = 0 # Counting character in a string for i in string: count+= 1 # Returning count return count # Driver code string = "geeksforgeeks" print(findLength(string))
Producción:
13
Este artículo es una contribución de Sahil Rajput . Si le gusta GeeksforGeeks y le gustaría contribuir, también puede escribir un artículo usando contribuya.geeksforgeeks.org o envíe su artículo por correo a contribuya@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.
Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA