Python program to find the length of string

 n=input("Enter String:")

j=len(n)

print("It's Length : ",j)

Comments