You can download this code by clicking the button below.
This code is now available for download.
Calculates and returns the length of the input string.
Technology Stack : String manipulation
Code Type : Function
Code Difficulty : Beginner
def get_string_length(input_string):
return len(input_string)