price_list=[120,250,133,420,145,369,700]
# given alist of prices
def sale(price):
# function for add discount in sale for evry price
discount=(15/100)
# discount 15%
new_price = price*discount
# new price
return new_price
new_price_list=list(map(sale,price_list))
# 120*15% , 250*15)3*15%
# use map function take evry price in price list
# add evry price to slae funtion
# add discount to this price return new price
# add evry new price in new_price_list
print(f"price list in sale {new_price_list}")
#print new list of prices