Python - 解压字符串格式化运算符列表的简短方法?
不幸的是, * 或 ** 运算符的变体似乎不起作用:
lstData = [1,2,3,4]
str = 'The %s are %d, %d, %d, and %d' % ('numbers', *lstData)
有一个简单的方法吗?
Variations of the * or ** operators don't seem to work, unfortunately:
lstData = [1,2,3,4]
str = 'The %s are %d, %d, %d, and %d' % ('numbers', *lstData)
Is there an easy way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用格式:
有关可能的格式(浮点数、小数点)的更多详细信息,请参阅文档, 转换, ..)。
Use format:
see the docs for more details about possible formatting (floats, decimal points, conversion, ..).