Write a python function to count the length of the string
Topic: Write a python function to count the length of the string
Solution
def len_str(st): return len(st)
List all Python Programs