# percentage of the reading and percentage of full scale
#Given data :
a=10 #scale reading
b=70 # full scale
error1=-(0.5/10)*100 # in %
print "step 1"
print "error of reading ", error1, " %"
error2=-(0.5/100)*100 # in %
print "error of full scale is ", error2, " %"
print "step 2"
error3=(2.5/70)*100 # in %
print "error of reading is ", round(error3,2), " %"
error4=(2.5/100)*100 # in %
print "error of full scale is", error4, " %"
# wattmeter error and correction figure
#Given data :
P1=120.0 # in W
V=114.0 #in volts
I=1 #in A
P=V*I
error1=P-P1 # in W
print "correction figure is ", error1, " W"
error2=(error1/P1)*100 # in %
print "wattmeter error is ",error2," %"