Learn practical skills, build real-world projects, and advance your career
w1,w2,w3= 0.3,0.2,0.5
temperature,rainfall,humidity= 73,67,43
yield_of_apples = w1 * temperature + w2 * rainfall + w3 * humidity
yield_of_apples
56.8
print(f"The expected yield of apples in Kanto region is {yield_of_apples} tons per hectare.")
The expected yield of apples in Kanto region is 56.8 tons per hectare.