Python 类型转换
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从数字类型转换为字符串:
从字符串转换为 int:
从字符串转换为浮点型:
To convert from a numeric type to a string:
To convert from a string to an int:
To convert from a string to a float:
这样做
您可以在 Python 2.x 中或在 Python 3.x 中
:请注意,Python 3 中的字符串与 Python 2 中的 unicode 字符串相同。
You could do it like this in Python 2.x:
or in Python 3.x:
Note that strings in Python 3 are the same as unicode strings in Python 2.
你可以这样做
如果只有 2 或 3 个键/值,也许这会更清楚
我认为如果有超过 3 个键/值,这会更好
You can do it this way
Perhaps this is clearer if there are only 2 or 3 keys/values
I think this would be better if there are more than 3 keys/values