Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Leonardo

Leonardo

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

Stats

40
EtPoint
0
Vote count
8
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)