Haskell provides the feature something like f = f1 . f2
How can I mimic that with Python?
For example, if I have to do the 'map' operation two times, is there any way to do something like map . map in Python?
x = ['1','2','3'] x = map(int,x) x = map(lambda i:i+1, x)
x = map(lambda i:int(i)+1, x)