0 votes
in Python by
What Does The Len() Function Do In Python?

1 Answer

0 votes
by
In Python, the len() is a primary string function. It determines the length of an input string.

>>> some_string = 'techbeamers'

>>> len(some_string)

11

Related questions

0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
0 votes
asked May 16, 2020 in Python by Robindeniel
...