Program to convert US Dollars to Indian rupees.

Code:

print("USD to INR Converter:")

dollars = float(input("Please enter dollars: "))

rupees = dollars * 64

print(rupees, " Rupees")

Output:

Comments

Popular posts from this blog

State use of pep and pip