Jak uzyskać bezwzględną wartość elementów listy w Python

myList = [2,3,-3,-2]
myList = list(map(abs,myList))
Dead Dotterel