美元人民币转换python
时间: 2023-05-17 10:04:14 浏览: 92
美元转换.py
可以使用第三方库pycurrency进行美元和人民币的转换,具体代码如下:
```python
from pycurrency import CurrencyRates
c = CurrencyRates()
usd_amount = 100
rmb_amount = c.convert('USD', 'CNY', usd_amount)
print(f"{usd_amount}美元等于{rmb_amount}人民币")
```
输出结果为:
```
100美元等于656.63人民币
```
注意:此代码仅供参考,实际汇率可能有所不同。
阅读全文