ValueError: zero length field name in format in Python2.6.6(ValueError:Python2.6.6 格式中的零长度字段名称)
问题描述
我使用这个 python shell 来生成一个字符串:
I use this python shell to generate a string:
>>>':'.join("{:x}
".format(random.randint(0, 2**16 - 1)) for i in range(4))
当我在 Python2.7.5 中运行这个 shell 时,一切正常.但是当 Python 版本为 2.6.6
时会发生 ValueError: zero length field name in format
.当 Python 版本为 2.6.6
时,我应该怎样运行这个 shell?
When I run this shell in Python2.7.5, everything goes okay. But it occurs ValueError: zero length field name in format
when Python version is 2.6.6
. What should I run this shell fine when Python version is 2.6.6
?
推荐答案
在 Python 2.6 或更早的版本中,您需要显式地为格式字段编号:
In Python versions 2.6 or earlier, you need to explicitly number the format fields:
':'.join("{0:x}
".format(random.randint(0, 2**16 - 1)) for i in range(4))
# ^
您可以在 docs 中阅读相关内容:
You can read about this in the docs:
在 2.7 版中更改:位置参数说明符可以省略,因此 '{} {}'
等效于 '{0} {1}'
.
Changed in version 2.7: The positional argument specifiers can be omitted, so
'{} {}'
is equivalent to'{0} {1}'
.
这篇关于ValueError:Python2.6.6 格式中的零长度字段名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ValueError:Python2.6.6 格式中的零长度字段名称
基础教程推荐
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 筛选NumPy数组 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01