0 and 1 are the basic building block for any software. Share and note my experience and encounter with 0 and 1.
>>> names = ['Cat' , 'Dog' , 'Mouse' , 'Orangutan']
>>> list(map(lambda x:x[::-1],names))
['taC', 'goD', 'esuoM', 'natugnarO']
>>>
No comments:
Post a Comment