how to measue the length of string python code example
Example 1: how to get length of string in python
string = "test"
print(len(string))
#>>> Output "4"
Example 2: how to get the length of a string in python
# Let's use the len() function
print(len("Hello, World!!"))
# this will return 14