write python program to convert US dollar into Indian rupees
D = input ("Enter a Dollar to convert in Indian Rupees :")
D = float (D)
R = D * 70
print("The Dollar is :",D)
print("Converting a Dollar into Indian Rupees :",R)
for execution and output so check the video.
Comments
Post a Comment