print("*** Money Exchange Rate Application ***")
# c = a * b
# MER = Money After Exchange / Money Before Exchange
print()
AFE = float(input("Please enter the money amount after exchange: "))
MBE = float(input("Please enter the money amount before exchange: "))
MER = AFE / MBE
print()
print("The money exchange forumla ratio one is: %2f" %MER)
print()
print("Money exchange rate formula two: ")
c = MBE * MER
print("Money exchange amount for received for currency conversion is: %2f" %c)
===============================================================
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.