Вопрос задан 16.06.2023 в 22:44. Предмет Информатика. Спрашивает Митасов Васёк.

Создать конвертор гривны в доллары, евро и рубли. Евро в гривны,рубли,доллары python СРОЧНО!!

0 0
Перейти к ответам

Ответы на вопрос

Внимание! Ответы на вопросы дают живые люди. Они могут содержать ошибочную информацию, заблуждения, а также ответы могут быть сгенерированы нейросетями. Будьте внимательны. Если вы уверены, что ответ неверный, нажмите кнопку "Пожаловаться" под ответом.
Отвечает Михоничев Деня.

choise=int(input('Для перевода из гривен, отправьте 1, для перевода из евро отправьте 2, \nЛюбое другое отправленное значение завершит выполнение программы '))

if choise==1:

   value=int(input('Введите сумму в гривнах '))

   print(f'{value} гривен будет равняться {value*0.04} долларам, {value*0.03} евро и {value*2.67} рублей')

elif choise==2:

   value = int(input('Введите сумму в евро '))

   print(f'{value} евро будет равняться {value * 1.13} долларам, {value * 32.23} гривен и {value * 86.15} рублей')

0 0
Отвечает нейросеть ChatGpt. Будьте внимательны, ответы нейросети могут содержать ошибочные или выдуманные данные.

Creating a Currency Converter in Python

To create a currency converter in Python that converts Ukrainian Hryvnia (UAH) to US Dollars (USD), Euros (EUR), and Russian Rubles (RUB), you can use an API or manually define the exchange rates. Here's an example of how you can achieve this:

```python import requests

def convert_currency(amount, from_currency, to_currency): # Define the exchange rates manually or use an API exchange_rates = { 'USD': 0.036, # Example exchange rate for USD 'EUR': 0.030, # Example exchange rate for EUR 'RUB': 2.70 # Example exchange rate for RUB }

# Convert the amount from the 'from_currency' to the 'to_currency' converted_amount = amount * exchange_rates[to_currency] / exchange_rates[from_currency] return converted_amount

# Example usage amount = 100 # Amount in UAH from_currency = 'UAH' to_currency = 'USD'

converted_amount = convert_currency(amount, from_currency, to_currency) print(f'{amount} {from_currency} is equal to {converted_amount} {to_currency}') ```

In this example, the `convert_currency` function takes the amount, the currency to convert from, and the currency to convert to as parameters. It then uses the manually defined exchange rates to perform the conversion. Finally, it returns the converted amount.

Please note that the exchange rates used in this example are just placeholders and may not reflect the actual rates. You can replace them with accurate exchange rates obtained from a reliable source or an API.

Keep in mind that exchange rates fluctuate, so it's important to regularly update the rates used in your currency converter to ensure accuracy.

I hope this helps you create a currency converter in Python! Let me know if you have any further questions.

0 0

Похожие вопросы

Топ вопросов за вчера в категории Информатика

Последние заданные вопросы в категории Информатика

Задать вопрос