如何用python写各国货币汇率兑换的代码
时间: 2023-03-24 16:01:21 浏览: 413
Python实现汇率转换操作
5星 · 资源好评率100%
您好!要用 Python 编写各国货币汇率转换的代码,可以使用第三方库进行实现。以下是一个示例代码:
```python
import requests
def convert_currency(amount, from_currency, to_currency):
api_key = 'YOUR_API_KEY_HERE' # 请替换为您自己的 API Key
url = f'https://v6.exchangerate-api.com/v6/{api_key}/pair/{from_currency}/{to_currency}/{amount}'
response = requests.get(url)
data = response.json()
if response.status_code == 200:
converted_amount = data['conversion_result']
return converted_amount
else:
return 'Error'
# 示例使用
amount = 100
from_currency = 'USD'
to_currency = 'CNY'
converted_amount = convert_currency(amount, from_currency, to_currency)
print(f'{amount} {from_currency} = {converted_amount} {to_currency}')
```
这个示例代码使用了 exchangerate-api.com 的 API,您需要替换 YOUR_API_KEY_HERE 为您自己的 API Key。同时,您可以根据您需要转换的货币对,修改 from_currency 和 to_currency 参数。最后,将 amount 参数替换为您需要转换的金额即可。
阅读全文