Learn practical skills, build real-world projects, and advance your career
cost_of_the_bag=1.25
profit_margin=.2
number_of_bags=500
#Perform the required calculations
profit_per_bag=cost_of_the_bag*profit_margin
total_profit=profit_per_bag*number_of_bags
print("the grocery stor makes profit of",total_profit)
the grocery stor makes profit of 125.0

my_fav_number=15
my_fav_number
15
#abhishek gupta
tenth_percentage =90.50
twelfth_percentage =93.20
twelfth_percentage>=tenth_percentage
True
tenth_percentage!=twelfth_percentage
True