The idiomatic way would be to use list comprehension:
myList = [10,20,30,40,50,60,70,80,90] myInt = 10 newList = [x / myInt for x in myList]
or, if you need to maintain the reference to the original list:
myList[:] = [x / myInt for x in myList]