String Length Calculation

  • Share this:

Code introduction


Calculate the length of the input string.


Technology Stack : String

Code Type : Function

Code Difficulty :


                
                    
def achaive_string_length(input_string):
    return len(input_string)                
              
Tags: