Return_length_of_string.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet


str = "I love programming in python";

print("Length of the string: ", len(str))
                    

Try it yourself