Impossible to use min(t[])

tppzabs = list(map(abs,temp))
print(tppzabs)
**tppz = min(tppzabs)**
print(tppz)

in my ide this code works
in your ride I have error message.
is’t normal ?

This works:

tppzabs = list(map(abs,temp))
print(tppzabs)
tppz = min(tppzabs)
print(tppz)

I don’t know what you were trying to do with those **, a ** prefix means ‘dictionary unpacking’, and postfix it means nothing.