Question d’entretien chez BlackBerry

write a function to convert a list of integer to a list of strings in python.

Réponse à la question d'entretien

Utilisateur anonyme

29 juil. 2016

c_string = lambda xs : [ str(x) for x in xs ] c_string( [1, 2,3,4])