Mancolo

Untitled

Sep 30th, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. money = int(input("Введите сумму денег: "))
  2.  
  3. USD = 79.60
  4. EUR = 93.18
  5.  
  6. currency = input("Выберите USD/EUR: ")
  7.  
  8. if currency == "USD":
  9.     print(round(money * USD, 3))
  10.        
  11. elif currency == "EUR":
  12.     print(round(money * EUR, 3))
  13.        
  14.  
Add Comment
Please, Sign In to add comment