
Patrick B. answered 12/17/20
Math and computer tutor/teacher
import math
print("Hello world")
bag_weight=0
while float(bag_weight)<=0:
bag_weight = input('How much does 1 bag weigh ??? :>')
num_bags = math.ceil(2205/float(bag_weight))
print(" # of bags needed = " + str(num_bags))