>>> d = {'a':1}
>>> print '%s' % 1,d
1 {'a': 1}
>>> print '%s %s' % 1,d
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: not enough arguments for format string
相关文章
- 12-17[python] 字符串与列表、字典的转换
- 12-17Python之路 day2 字符串/元组/列表/字典互转
- 12-17Python学习之旅--第二周--元组、字符串、运算、字典
- 12-17Python基础二_操作字符串常用方法、字典、文件读取
- 12-17python字符串(移除空白,长度,索引,分割,切片,拼接,格式化输出)
- 12-17关于python:如果键存在,则删除字典项
- 12-17jmu-python-输入输出-格式化输出字符串
- 12-17【Python】判断变量类型(是否为int、字符串、列表、元组、字典等方法)
- 12-17python练习:假设s是一个字符串,返回s中十进制数字之和。例如,如果s是‘a2b3c’,则返回5。
- 12-17Python 整数 长整数 浮点数 字符串 列表 元组 字典的各种方法