I am trying to use print inside lambda. Something like that:
lambda x: print x
I understand, that in
You can import print_function from the __future__ and use it as a function like this
print_function
__future__
from __future__ import print_function map(print, [1, 2, 3]) # 1 # 2 # 3