The formula is given as E = mc2
Where E ⇒ energy is measured in Joule,
m ⇒ mass in Kilogram,
c ⇒ speed of light in m/s.
#Program to calculate the equivalent energy of an object
#asking for the mass in grams
mass = float(input("Enter the mass of object(in grams): "))
#Speed of light is known and given in the question
c = 3 * 10 ** 8
#calculating the energy, mass is divided by 1000 to convert it into kilogram
Energy = (mass/1000) * c ** 2
#printing the output
print("The energy of an object with mass",mass," grams ",Energy,"Joule.")
Start Learning Python at - Python Programming Class 10