I have a list
a = [49, 51, 53, 56]
How do I subtract 13 from each integer value in the list?
You can use map() function:
a = list(map(lambda x: x - 13, a))