# Example usage using list comprehension: # Say you want to divide every number in your_list by some number your_list = [10,20,30,40,50,60,70,80,90] new_list = [x / 10 for item in your_list] print(new_list) --> [1,2,3,4,5,6,7,8,9] # Each number divided by 10
Here is what the above code is Doing:
1. We create a new list called new_list
2. We iterate through each item in your_list
3. We divide each item in your_list by 10
4. We append the result of the division to new_list