My code is like this:
def f1(x):
return x**x
L = [1,2,3,4,5,6,7,8,9,10,11]
map(f1, L)
and the result shows:
[1, 4, 27, 256, 3125, 46656, 823543, 16777216, 387420489, 10000000000L, 285311670611L]
I tried this both on my windows and Ubuntu system, it's the same result, is there something wrong with my code or my python or something else?