I have a list
a = [49, 51, 53, 56]
How do I subtract 13 from each integer value in the list?
With a list comprehension:
a = [x - 13 for x in a]