货币转换程序(双符号)python代码,Python-将货币代码转换为其符号

In Python, how can I convert currency code to its sign?

For example, USD would be converted to $, and JPY would be converted to ¥.

If there isn't a generic way to do this, is there any simple dictionary of these on the Web?

Thanks.

解决方案

Using the locale module:

import locale

locales=('en_AU.utf8', 'en_BW.utf8', 'en_CA.utf8',

'en_DK.utf8', 'en_GB.utf8', 'en_HK.utf8', 'en_IE.utf8', 'en_IN', 'en_NG',

'en_PH.utf8', 'en_US.utf8', 'en_ZA.utf8',

'en_ZW.utf8', 'ja_JP.utf8')

for l in locales:

locale.setlocale(locale.LC_ALL, l)

conv=locale.localeconv()

print('{ics} ==> {s}'.format(ics=conv['int_curr_symbol'],

s=conv['currency_symbol']))

yields:

AUD ==> $

BWP ==> Pu

CAD ==> $

DKK ==> kr

GBP ==> £

HKD ==> HK$

EUR ==> €

INR ==> ₨

NGN ==> ₦

PHP ==> Php

USD ==> $

ZAR ==> R

ZWD ==> Z$

JPY ==> ¥

Note you need the locale information installed on your machine. On Ubuntu, this means having the right language-pack-* packages installed.

On *nix systems, you can find the list of known locales (e.g. en_GB.utf8) with

locale -a

I don't know of a way to obtain this list from within Python (without using subprocess).

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值