Im unable to figure out why my code wont output, its for calculating material ratios at my job in can packaging
This is the portion of the code Im designing for figuring out how much we can do with limited material: pack = input() cases = float(input()) _355_or_473 = input() sizes = [355,473] packs = [12,15,24,30] if pack in packs: print(pack,'pack') if pack == 12: if _355_or_473 == 355: cans=(cases*4320*12) cans/=7780 print(cans/7780,'Can Pallets') if _355_or_473 == 473: cans=(cases*3360*12) cans/=6224 print(cans,'Can Pallets') if pack == 15: cans=(cases*2400*15) cans/=7780 print(cans,'Can Pallets') if pack == 24: cans=(cases*2025*24) cans/=7780 print(cans,'Can Pallets') if pack == 30: cans=(cases*2700*30) cans/=7780 print(cans,'Can Pallets')