Assuming that a user enters 25 for the price of an item, whi…

Assuming that a user enters 25 for the price of an item, which of the following hand-trace tables is valid for the given code snippet? price = 0 status = “” price = float(input(“Enter the price for your item: “)) if price >= 50 : status = “reasonable” if price >= 75 : status = “costly” else : status = “inexpensive” if price