sales = [150, 300, 250, 400, 350]
max_sale = 0

for i in range(len(sales)):
    if sales[i] > max_sale:
        max_sale = sales[i]

print(max_sale)
    

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: