Currency Converter Program in Python
The most powerful language today is python. Every beginner in programming today is learning Python as its first programming language. Python is such a powerful tool for machine learning and Artificial Intelligence.
And now we can say that;
What we can not do with Python?
We can do with Python more and more things.
But
Here we are going to make a currency converter program in Python. You probably have developed the currency converter program in C++ or C language if you are not a beginner. If you are a beginner, don't you worry.
Currency Converter Program in Java
In this article, we will teach you how you can make a program of currency conversion in python from scratch.
Algorithm of Python Currency Conversion Program
Below is the source code for the python program of currency conversion.
Source Code For Currency Converter Program in Python
Below is the source code for the python program of currency conversion.
print("Enter the Dollars For Conversion : ")
dollars=float(input())
bp=(1/1.487);
frnc=(1/0.172);
dutchmark=(1/0.584);
yen=(1/0.00955);
print("British Pound =",bp*dollars)
print("French Franc=",frnc*dollars)
print("German Dutch =",dutchmark*dollars)
print("Japaani Yen =",yen*dollars)
Output For Currency Converter Program in Python
Thank You
SoftOSet
Reset Your Technology
Post a Comment
Feel Free to Comment Us