pyhton 3 how to get length of string code example
Example 1: how to get length of string in python
string = "test"
print(len(string))
#>>> Output "4"
Example 2: length of striung pyhton
len(string)
string = "test"
print(len(string))
#>>> Output "4"
len(string)