Python program to convert dollar into rupees

python program

Write a program in python to convert dollar into rupees

---------------------------------------------------

dollar=float(input("Please Enter amount in dollars : "))
rupees=dollar*74.23
print("The Amount is : ",rupees, "Rupees")

---------------------------------------------------

Output-

Please Enter amount in dollars : 52.5

The Amount is :  3897.0750000000003 Rupees

Post a Comment

0 Comments