print ("*** Application for Average Power Calculator ***")
print ("\n")
EV = float(input("Please enter the Energy in joules value:"))
TV = float(input("Please enter the time period in seconds value:"))
P = EV / TV
print ("Total average power P in watts (W) is", (P))
===============================================================
https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.