Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Leonardo

Leonardo

Leonardo has asked 6 questions and find answers to 0 problems.

Stats

30
EtPoint
0
Vote count
6
questions
0
answers

About

Define a function that computes the length of a given list or string. (It is true that Python has the len() function built in, but writing it yourself is nevertheless a good exercise.)

def strlen(a): return len(a)