Python 类型转换

发布于 2024-08-23 07:37:06 字数 223 浏览 5 评论 0原文

在 python 中将 int、long、double 转换为字符串的最佳方法是什么,反之亦然。

我正在循环遍历一个列表并将 long 传递给一个应该转换为 unicode 字符串的字典。

为什么

for n in l:  
    {'my_key':n[0],'my_other_key':n[1]}

一些最明显的事情如此复杂?

Whats the best way to convert int's, long's, double's to strings and vice versa in python.

I am looping through a list and passing longs to a dict that should be turned into a unicode string.

I do

for n in l:  
    {'my_key':n[0],'my_other_key':n[1]}

Why are some of the most obvious things so complicated?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笑红尘 2024-08-30 07:37:06

从数字类型转换为字符串:

str(100)

从字符串转换为 int:

int("100")

从字符串转换为浮点型:

float("100")

To convert from a numeric type to a string:

str(100)

To convert from a string to an int:

int("100")

To convert from a string to a float:

float("100")
淡笑忘祈一世凡恋 2024-08-30 07:37:06

这样做

>>> l = ((1,2),(3,4))
>>> dict(map(lambda n: (n[0], unicode(n[1])), l))
{1: u'2', 3: u'4'}

您可以在 Python 2.x 中或在 Python 3.x 中

>>> l = ((1,2),(3,4))
>>> {n[0] : str(n[1]) for n in l}
{1: '2', 3: '4'}

:请注意,Python 3 中的字符串与 Python 2 中的 unicode 字符串相同。

You could do it like this in Python 2.x:

>>> l = ((1,2),(3,4))
>>> dict(map(lambda n: (n[0], unicode(n[1])), l))
{1: u'2', 3: u'4'}

or in Python 3.x:

>>> l = ((1,2),(3,4))
>>> {n[0] : str(n[1]) for n in l}
{1: '2', 3: '4'}

Note that strings in Python 3 are the same as unicode strings in Python 2.

音栖息无 2024-08-30 07:37:06

你可以这样做

for n in l:
    {'my_key':unicode(n[0]),'my_other_key':unicode(n[1])}

如果只有 2 或 3 个键/值,也许这会更清楚

for my_value, my_other_value in l:
    {'my_key':unicode(my_value),'my_other_key':unicode(my_other_value)}

我认为如果有超过 3 个键/值,这会更好

for n in l:
    dict(zip(('my_key','myother_key'),map(unicode,n)))

You can do it this way

for n in l:
    {'my_key':unicode(n[0]),'my_other_key':unicode(n[1])}

Perhaps this is clearer if there are only 2 or 3 keys/values

for my_value, my_other_value in l:
    {'my_key':unicode(my_value),'my_other_key':unicode(my_other_value)}

I think this would be better if there are more than 3 keys/values

for n in l:
    dict(zip(('my_key','myother_key'),map(unicode,n)))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文