How to Find the Length of a String in Python?

Use `len(my_string)`

Example: `text = “hello”`

Example: `length = len(text)`

Example: `print(length)`

Suggested for You

Trending Today