Subtract a value from every number in a list in Python? January 2, 2023 by Tarik With a list comprehension: a = [x - 13 for x in a]