+ 8
What does len mean?
9 Antworten
+ 7
Length of the string. The number of characters
+ 7
I think you are talking about python.
It used to get the length of an array or a string.
Eg:
str1 = "abcdef"
arr = [1,2,5,3]
print(len(str1)) #6
print(len(arr)) #4
+ 5
new lesson of python🤩
+ 3
Great answers Gabriel Vasile Seniru Pasan
+ 2
Length of string/array
+ 2
it is gerally abbrevation of lenght
+ 2
length in python.
other languages: ERROR
lmao
+ 2
Thanks for all the feedback!
+ 1
How would I make a hangman game in Python that shows what letters you've guessed and has dashes for how many characters the secret word is.