Learn practical skills, build real-world projects, and advance your career

It's my first Journey to learn the coding

cost_of_ice_bag = 1.25
profit_margin = 0.2
number_of_bags = 500
profit_per_bag = cost_of_ice_bag * profit_margin
print(profit_per_bag)
0.25