Login
Remember
Register
Ask a Question
What Does The Len() Function Do In Python?
0
votes
asked
Dec 14, 2019
in
Python
by
sharadyadav1986
What Does The Len() Function Do In Python?
#python-len
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 14, 2019
by
SakshiSharma
In Python, the len() is a primary string function. It determines the length of an input string.
>>> some_string = 'techbeamers'
>>> len(some_string)
11
...