Answer:
mass=input("Enter the mass in Kilogram")
Weight=0.00
Weight= float(mass) * 9.8
if Weight>1000.00:
print("Weight is too heavy=",+ Weight)
elif Weight<10.00:
print("Weight is too light=",+ Weight)
Explanation:
We take the mass in kilograms as input. And we declare a weight of float type. Finally, we calculate the weight by converting mass to float and replacing it in the formula Weight= mass * 9.8. And finally, we print the weight, with a message its too heavy if it is more than 1000 Newton, and loo light if it is less than 10.