18. Python Program to convert given amount in Dollars into Rupees.
How does this program work?
- This program will help you to easily convert amount in Dollars into Rupees using Python.
Here is the code
dollar = int (input("Enter the amount in dollars: $"))
rs = dollar*70
print("Converted amount in rupees is: ",rs)